Skip to content

Commit

Permalink
fix(build): gpg key decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Cubxity committed Oct 23, 2021
1 parent aef1ef5 commit cd08e47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Configure GPG Key
run: |
echo -n "SIGNING_KEY" | base64 --decode > /tmp/keyring.gpg
env:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
run: echo "${{secrets.SIGNING_KEY}}" | base64 --decode > /tmp/keyring.gpg
- name: Set up JDK 16
uses: actions/setup-java@v2
with:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Configure GPG Key
run: |
echo -n "SIGNING_KEY" | base64 --decode > /tmp/keyring.gpg
env:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
run: echo "${{secrets.SIGNING_KEY}}" | base64 --decode > /tmp/keyring.gpg
- name: Set up JDK 16
uses: actions/setup-java@v2
with:
Expand Down

0 comments on commit cd08e47

Please sign in to comment.