We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 038802f commit 39ae62eCopy full SHA for 39ae62e
.github/workflows/build.yml
@@ -67,12 +67,16 @@ jobs:
67
if: runner.os == 'Linux'
68
run: echo "/snap/bin" >> $GITHUB_PATH
69
70
- - name: Run build script
71
- shell: cmd
+ - name: Run build script on Linux
72
run: npx yarn dist
73
env:
74
PATH: ./node_modules/.bin:$PATH
75
+ - name: Run build script on Windows
76
+ run: build.bat
77
+ env:
78
+ PATH: ./node_modules/.bin:$PATH
79
+
80
- name: Zip portable builds
81
if: runner.os == 'Windows'
82
run: Compress-Archive -Path .\dist\win-unpacked\ -DestinationPath .\dist\Sploder-Portable-x64.zip && Compress-Archive -Path .\dist\win-ia32-unpacked\ -DestinationPath .\dist\Sploder-Portable-ia32.zip
0 commit comments