Skip to content

Commit

Permalink
fix release tag
Browse files Browse the repository at this point in the history
  • Loading branch information
carlHandy committed Jul 20, 2024
1 parent 385f957 commit 8973605
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,29 @@ permissions:
contents: write

jobs:
update-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- name: Update version in main.php
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
run: |
git config --local user.email "carl@kalpa.dev"
git config --local user.name "Carl Handy"
chmod +x .github/scripts/update-version.sh
.github/scripts/update-version.sh
build:
needs: update-version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Zip project
run: zip -r mmg-checkout-payment.zip . -x "*.git*"
Expand Down

0 comments on commit 8973605

Please sign in to comment.