Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Matte22 committed Feb 24, 2024
1 parent 729370a commit 5b7fc04
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/build-binary-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,21 +55,16 @@ jobs:
if: always() && steps.run_build_script_and_sign.outcome == 'success'
run: echo "PACKAGE_VERSION=$(jq -r '.version' package.json)" >> $GITHUB_ENV

- name: Verify Signature for Linux
id: verify_signature_linux
- name: Verify Signatures
id: verify_signatures
if: always() && steps.run_build_script_and_sign.outcome == 'success'
working-directory: ./dist
run: |
if ! gpg --verify stigman-watcher-linux-${{ env.PACKAGE_VERSION }}.tar.gz.asc stigman-watcher-linux-${{ env.PACKAGE_VERSION }}.tar.gz; then
echo "::warning ::Signature verification for Linux failed"
fi
- name: Verify Signature for Windows
id: verify_signature_windows
if: always() && steps.run_build_script_and_sign.outcome == 'success'
working-directory: ./dist
run: |
if ! gpg --verify stigman-watcher-win-${{ env.PACKAGE_VERSION }}.zip.asc stigman-watcher-win-${{ env.PACKAGE_VERSION }}.zip; then
echo "::warning ::Signature verification for Windows failed"
fi

0 comments on commit 5b7fc04

Please sign in to comment.