Skip to content

Commit

Permalink
fix: Inappropriate ioctl for device
Browse files Browse the repository at this point in the history
  • Loading branch information
mosoriob committed Jul 31, 2024
1 parent 1afb4ed commit 7398ef4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Maven Package
on:
push:
branches:
- '*'
- main

jobs:
build:
Expand All @@ -26,15 +26,14 @@ jobs:
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
run: |
echo "$GPG_PRIVATE_KEY" | gpg --import
echo "$GPG_PRIVATE_KEY" | gpg --batch --yes --import
gpg --list-secret-keys
- name: Verify GPG Passphrase
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: |
echo "test message" | gpg --pinentry-mode loopback --passphrase "$GPG_PASSPHRASE" --sign --local-user your-key-id
gpg --list-secret-keys
echo "test message" | gpg --batch --yes --pinentry-mode loopback --passphrase "$GPG_PASSPHRASE" --sign --local-user [email protected]
- name: Set up Maven settings
run: |
Expand Down

0 comments on commit 7398ef4

Please sign in to comment.