Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Klotz committed Oct 16, 2023
1 parent 933e3ca commit 493bbab
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: build-pages
on:
workflow_dispatch:
inputs:
busytexreleasetag:
wasmreleasetag:
description: 'wasm_release_tag'
required: true

Expand All @@ -22,7 +22,10 @@ jobs:
mkdir -p example
cp ../example/* example/
mkdir -p build/wasm/
cp ../build/wasm/busytex.wasm ../build/wasm/busytex.js build/wasm/
cd build/wasm/
wget https://github.com/busytex/busytex/releases/download/${{ github.event.inputs.busytexreleasetag }}/busytex.wasm
wget https://github.com/busytex/busytex/releases/download/${{ github.event.inputs.busytexreleasetag }}/busytex.js
cd ../../
mkdir -p build-js/
cp ../build-js/BusytexAsync.browser.js build-js/
mkdir -p typescript/test/assets
Expand Down

0 comments on commit 493bbab

Please sign in to comment.