File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 26
26
python-version : " pypy-3.8" # no cryptography available there
27
27
28
28
env :
29
- GNUPGHOME : ${{ github.workspace }}/.gpg
30
29
PGP_KEY_NAME : ${{ secrets.PGP_KEY_NAME }}
31
30
PGP_KEY_PASSWD : ${{ secrets.PGP_KEY_PASSWD }}
32
31
BSD_KEY : ${{ github.workspace }}/bsd-key
37
36
- name : Preprare Keys
38
37
shell : bash
39
38
run : |
40
- mkdir -p $GITHUB_WORKSPACE/.gpg
39
+ export GNUPGHOME=$GITHUB_WORKSPACE/.gpg
40
+ mkdir -p $GNUPGHOME
41
41
echo -n "${{ secrets.PGP_KEY }}" | base64 --decode | gpg --import --batch --pinentry-mode=loopback
42
42
echo -n "${{ secrets.BSD_KEY }}" > $GITHUB_WORKSPACE/bsd-key
43
43
51
51
run : pip install Nox
52
52
53
53
- name : Test
54
- run : nox --sessions test --force-python ${{ steps.setup-python.outputs.python-path }}
54
+ shell : bash
55
+ run : |
56
+ export GNUPGHOME=$GITHUB_WORKSPACE/.gpg
57
+ nox --sessions test --force-python ${{ steps.setup-python.outputs.python-path }}
55
58
You can’t perform that action at this time.
0 commit comments