File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -147,10 +147,11 @@ jobs:
147
147
runs-on : ubuntu-24.04
148
148
strategy :
149
149
matrix :
150
- build_type : [Debug, Release]
150
+ build_type : [Debug, Release, RelWithDebInfo, MinSizeRel ]
151
151
env :
152
152
EM_VERSION : 4.0.5
153
153
EM_CACHE_FOLDER : " emsdk-cache"
154
+ itch_deploy_type : Release
154
155
steps :
155
156
- uses : actions/checkout@v4
156
157
with :
@@ -196,7 +197,7 @@ jobs:
196
197
if-no-files-found : error
197
198
compression-level : 6
198
199
- name : Install Butler
199
- if : github.ref == 'refs/heads/main' && matrix.build_type == 'Release'
200
+ if : github.ref == 'refs/heads/main' && matrix.build_type == env.itch_deploy_type
200
201
run : |
201
202
mkdir ~/bin
202
203
cd ~/bin
@@ -206,7 +207,7 @@ jobs:
206
207
echo "~/bin" >> $GITHUB_PATH
207
208
~/bin/butler -V
208
209
- name : Upload to Itch
209
- if : github.ref == 'refs/heads/main' && matrix.build_type == 'Release'
210
+ if : github.ref == 'refs/heads/main' && matrix.build_type == env.itch_deploy_type
210
211
env :
211
212
BUTLER_API_KEY : ${{ secrets.BUTLER_API_KEY }}
212
213
run : butler push dist/${{ env.archive-name }} hexdecimal/${{ env.project-name }}:emscripten-latest
You can’t perform that action at this time.
0 commit comments