Skip to content

Commit

Permalink
Add env vars for secrets to test Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhung committed Jan 15, 2025
1 parent 6980fce commit 5c9e35b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ jobs:
echo "JFROG_ACCESS_TOKEN=$JFROG_ACCESS_TOKEN" >> "$GITHUB_ENV"
- name: Execute acceptance tests
run: make acceptance
env:
JFROG_TEST_PGP_PRIVATE_KEY: ${{ secrets.JFROG_TEST_PGP_PRIVATE_KEY }}
JFROG_TEST_PGP_PUBLIC_KEY: ${{ secrets.JFROG_TEST_PGP_PUBLIC_KEY }}
JFROG_TEST_RSA_PRIVATE_KEY: ${{ secrets.JFROG_TEST_RSA_PRIVATE_KEY }}
JFROG_TEST_RSA_PUBLIC_KEY: ${{ secrets.JFROG_TEST_RSA_PUBLIC_KEY }}
- name: Install provider
run: |
export PROVIDER_VERSION=$(git describe --tags --abbrev=0 | sed -n 's/v\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1.\2.\3/p')
Expand Down

0 comments on commit 5c9e35b

Please sign in to comment.