File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change 10
10
PARTICLE_WINDOWS_SIGNING_PASS : ${{ secrets.PARTICLE_WINDOWS_SIGNING_PASS }}
11
11
12
12
jobs :
13
- call-tests :
14
- uses : ./.github/workflows/tests.yml
15
- secrets : inherit
13
+ # call-tests:
14
+ # uses: ./.github/workflows/tests.yml
15
+ # secrets: inherit
16
16
build :
17
- needs : call-tests
17
+ # needs: call-tests
18
18
runs-on : ubuntu-latest # Choose an appropriate runner
19
19
steps :
20
20
- uses : actions/checkout@v3
58
58
- name : ' Install makensis (apt)'
59
59
run : sudo apt update && sudo apt install -y nsis nsis-pluginapi
60
60
61
+ - name : Download and unzip osslsigncode binary
62
+ run : |
63
+ mkdir osslsigncode
64
+ curl -LJO https://github.com/mtrojnar/osslsigncode/releases/download/2.6/osslsigncode-2.6-ubuntu-20.04.zip
65
+ unzip osslsigncode-2.6-ubuntu-20.04.zip -d osslsigncode
66
+ chmod +x osslsigncode/osslsigncode
67
+ - name : Add osslsigncode to PATH
68
+ run : |
69
+ echo "export PATH=\$PATH:$(pwd)/osslsigncode" >> $GITHUB_ENV
70
+
61
71
- name : Sign Windows package
62
72
run : |
63
73
npm run sign:win
You can’t perform that action at this time.
0 commit comments