Skip to content

Commit

Permalink
Fix path in signing workflow (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
giarc3 authored Jun 18, 2020
1 parent 6e19332 commit fc55c75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Sign artifact for windows-2019
run: |
gpg --batch --detach-sign -a release/windows-2019/ironoxide-cli-windows-2019.exe
gpg --batch --verify release/windows-2019/ironoxide-cli-windows-2019.asc release/windows-2019/ironoxide-cli-windows-2019.exe
gpg --batch --verify release/windows-2019/ironoxide-cli-windows-2019.exe.asc release/windows-2019/ironoxide-cli-windows-2019.exe
- name: Upload artifact for windows-2019
uses: actions/upload-release-asset@v1
env:
Expand All @@ -127,6 +127,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.release.outputs.upload_url }}
asset_path: release/windows-2019/ironoxide-cli-windows-2019.asc
asset_name: ironoxide-cli-windows-2019.asc
asset_path: release/windows-2019/ironoxide-cli-windows-2019.exe.asc
asset_name: ironoxide-cli-windows-2019.exe.asc
asset_content_type: application/pgp-signature

0 comments on commit fc55c75

Please sign in to comment.