File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ jobs:
310310
311311 # dev release (optional)
312312 - name : 🚢 Create/Update Dev Release
313- if : github.ref == 'refs/heads/dev' && matrix.agda == 'Agda-2.8.0' && matrix.os == 'ubuntu-latest'
313+ if : ( github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/ci') && matrix.agda == 'Agda-2.8.0' && matrix.os == 'ubuntu-latest'
314314 env :
315315 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
316316 run : |
@@ -329,15 +329,15 @@ jobs:
329329 --prerelease
330330
331331 - name : 📤 Upload artifacts to dev release
332- if : github.ref == 'refs/heads/dev' && matrix.agda == 'Agda-2.8.0'
332+ if : ( github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/ci') && matrix.agda == 'Agda-2.8.0'
333333 env :
334334 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
335335 run : |
336336 gh release upload dev $ARTEFACT.zip --clobber
337337
338338 build-wasm :
339339 name : Build WASM
340- if : github.ref == 'refs/heads/dev'
340+ if : github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/ci'
341341 runs-on : ubuntu-22.04
342342
343343 env :
You can’t perform that action at this time.
0 commit comments