Skip to content

Commit

Permalink
Remove redundant emscripten build (#73693)
Browse files Browse the repository at this point in the history
Turns out this was already being built
  • Loading branch information
kevingranade committed May 12, 2024
1 parent 8b80497 commit 39e2afa
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ jobs:
make -j$((`nproc`+0)) TILES=${{ matrix.tiles }} SOUND=${{ matrix.tiles }} RELEASE=1 LOCALIZE=1 LANGUAGES=all BACKTRACE=1 LIBBACKTRACE=${{ matrix.libbacktrace }} PCH=0 bindist
mv cataclysmdda-0.I.tar.gz cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.tar.gz
- name: Build CDDA (WebAssembly)
if: matrix.wasm
if: matrix.wasm && success()
run: |
./build-scripts/build-emscripten.sh
./build-scripts/prepare-web.sh
Expand Down Expand Up @@ -391,8 +391,3 @@ jobs:
fi
- run: |
gh release upload cdda-experimental-${{ needs.release.outputs.timestamp }} cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.${{ matrix.ext }}
emscripten:
needs: [ builds ]
if: ${{ success() }}
uses: ./.github/workflows/emscripten.yml
secrets: inherit

0 comments on commit 39e2afa

Please sign in to comment.