Skip to content

Commit

Permalink
try initialize password store
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyaoy committed Oct 4, 2024
1 parent fff5b6a commit 91d39c8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/validate-other-market-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,19 @@ jobs:
node-version: 18
cache: pnpm

- name: Initialize password store
run: |
gpg --batch --gen-key <<EOF
Key-Type: RSA
Key-Length: 2048
Name-Real: GitHub Actions
Name-Email: [email protected]
Expire-Date: 0
%no-protection
EOF
GPG_ID=$(gpg --list-keys --with-colons | awk -F: '/^pub:/ { print $5 }')
pass init $GPG_ID
- name: Install dependencies
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down

0 comments on commit 91d39c8

Please sign in to comment.