Skip to content

Commit

Permalink
Bugfix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Klotz committed Oct 16, 2023
1 parent ebf0409 commit c672c5a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ jobs:

- uses: actions/checkout@v2

- run: |
mkdir -p build/wasm/
cd build/wasm/
wget https://github.com/bnw/busytex-async/releases/download/${{ github.event.inputs.wasmreleasetag }}/busytex.wasm
wget https://github.com/bnw/busytex-async/releases/download/${{ github.event.inputs.wasmreleasetag }}/busytex.js
cd ../../
- run: cd $GITHUB_WORKSPACE && npm install && npm run build

- run: |
Expand All @@ -35,10 +42,7 @@ jobs:
mkdir -p example
cp ../example/* example/
mkdir -p build/wasm/
cd build/wasm/
wget https://github.com/bnw/busytex-async/releases/download/${{ github.event.inputs.wasmreleasetag }}/busytex.wasm
wget https://github.com/bnw/busytex-async/releases/download/${{ github.event.inputs.wasmreleasetag }}/busytex.js
cd ../../
cp ../build/wasm/busytex.wasm ../build/wasm/busytex.js build/wasm/
mkdir -p build-js/src/
cp ../build-js/src/BusytexAsync.browser.js build-js/src/
mkdir -p typescript/test/assets
Expand Down

0 comments on commit c672c5a

Please sign in to comment.