Commit 428057d 1 parent 50d9fb1 commit 428057d Copy full SHA for 428057d
File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 12
12
name : Generate and upload assets
13
13
if : startsWith(github.event.commits[0].message, 'chore(release):')
14
14
runs-on : ${{ matrix.os }}
15
+ continue-on-error : true
15
16
strategy :
16
17
matrix :
17
18
include :
@@ -23,11 +24,11 @@ jobs:
23
24
npm_script : pack:tarballs
24
25
dist_folder : tar
25
26
extension : tar.gz
26
- - os : windows -latest
27
+ - os : ubuntu -latest
27
28
npm_script : pack:windows
28
29
dist_folder : win32
29
30
extension : x64.exe
30
- - os : windows -latest
31
+ - os : ubuntu -latest
31
32
npm_script : pack:windows
32
33
dist_folder : win32
33
34
extension : x86.exe
57
58
const packageJson = require('./package.json');
58
59
const packageJsonVersion = packageJson.version;
59
60
core.setOutput('version', packageJsonVersion);
61
+ - if : matrix.npm_script == 'pack:windows':
62
+ # fix for windows build issue #1433
63
+ name : Install p7zip-full nsis
64
+ run : sudo apt-get install -y p7zip-full nsis
60
65
- if : steps.lockversion.outputs.version == '18' && matrix.os == 'windows-latest'
61
66
# npm cli 10 is buggy because of some cache issue
62
67
name : Install npm cli 8
You can’t perform that action at this time.
0 commit comments