Skip to content

Commit

Permalink
Fix release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmedv committed Oct 19, 2024
1 parent 6a83a07 commit c637963
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ jobs:
- name: Build phar
run: php -d phar.readonly=0 bin/build -v"$RELEASE_VERSION"

- name: Upload phar
run: gh release upload v"${RELEASE_VERSION}" deployer.phar
env:
GH_TOKEN: ${{ github.token }}

- name: Sign phar
run: |
mkdir -p ~/.gnupg/
Expand All @@ -47,6 +42,11 @@ jobs:
${{ secrets.GPG_SIGNING_KEY }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- name: Upload phar
run: gh release upload v"${RELEASE_VERSION}" deployer.phar
env:
GH_TOKEN: ${{ github.token }}

- name: Upload signature
run: gh release upload v"${RELEASE_VERSION}" deployer.phar.asc
env:
Expand Down

0 comments on commit c637963

Please sign in to comment.