Skip to content

Commit

Permalink
Merge pull request #18 from yacchi/develop
Browse files Browse the repository at this point in the history
fix: cannot install GPG keys on GitHub Actions
  • Loading branch information
yacchi committed Oct 25, 2023
2 parents 2c6fcf9 + e650265 commit 96fb21f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Install GPG keys
run: gpg -v --keyserver keyserver.ubuntu.com --recv-keys 96B047156338B6D4 80CB727A20C79BB2
run: |
wget -q https://ftp.gnu.org/gnu/gnu-keyring.gpg
gpg --import gnu-keyring.gpg
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v3
Expand Down

0 comments on commit 96fb21f

Please sign in to comment.