Skip to content

Commit

Permalink
inducing fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Matte22 committed Mar 1, 2024
1 parent 5645e40 commit 92c6028
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-binary-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Import GPG Key
id: import_gpg
run: |
if ! echo "${{ secrets.WATCHER_PRIVATE_KEY }}" | gpg--import; then
if ! echo "${{ secrets.WATCHER_PRIVATE_KEY }}" | gpg --import; then
echo "::warning ::Private key GPG Import failed"
exit 1
fi
Expand All @@ -43,15 +43,15 @@ jobs:
- name: Sign Artifacts
id: sign_artifacts
run: |
if ! gpg --default-key [email protected] --armor --detach-sig ./dist/stigman-watcher-linux-${{ env.PACKAGE_VERSION }}.tar.gz; then
if ! gpg--default-key [email protected] --armor --detach-sig ./dist/stigman-watcher-linux-${{ env.PACKAGE_VERSION }}.tar.gz; then
echo "::warning ::Linux Signing failed"
exit 1
fi
if ! gpg --default-key [email protected] --armor --detach-sig ./dist/stigman-watcher-win-${{ env.PACKAGE_VERSION }}.zip; then
if ! gpg--default-key [email protected] --armor --detach-sig ./dist/stigman-watcher-win-${{ env.PACKAGE_VERSION }}.zip; then
echo "::warning ::Windows Signing failed"
exit 1
fi
- name: Verify Signatures
id: verify_signatures
working-directory: ./dist
Expand Down

0 comments on commit 92c6028

Please sign in to comment.