Skip to content

Commit a6e6438

Browse files
committed
fix(ci): import pgp key for testing in release workflow prior run bazel tests
1 parent 50cbe43 commit a6e6438

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
disk-cache: ${{ github.workflow }}
1818
repository-cache: true
1919
- name: Bazel test
20-
run: bazel test //... --config=ci
20+
run: |
21+
gpg --import examples/release_with_secrets/pgp/sops_functional_tests_key.asc
22+
bazel test //... --config=ci
2123
- name: Prepare release
2224
run: .github/workflows/release-gen.sh ${{ env.GITHUB_REF_NAME }} ${{ env.GITHUB_REPOSITORY }} > release_notes.txt
2325
- name: Release

0 commit comments

Comments
 (0)