Skip to content

Commit

Permalink
fix: cannot install GPG keys on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yacchi committed Oct 25, 2023
1 parent 2c6fcf9 commit e650265
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 e650265

Please sign in to comment.