Skip to content

Commit

Permalink
Fixed copy commands
Browse files Browse the repository at this point in the history
  • Loading branch information
hsm4 committed Oct 7, 2024
1 parent 5157cda commit c170e70
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy-wasm-emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
run: cmake --build ${{ github.workspace }}/build --target app-demo -j $(nproc)

- name: Create Zip Folder
working-directory: ${{ github.workspace }}
run: |
mkdir emscripten_build
working-directory: ${{ github.workspace }}/build
cp app-demo.html ../emscripten_build
cp app-demo.js ../emscripten_build
cp app-demo.wasm ../emscripten_build
cp app-demo.worker.js ../emscripten_build
cp app-demo.ww.js ../emscripten_build
cp build/app-demo.html emscripten_build
cp build/app-demo.js emscripten_build
cp build/app-demo.wasm emscripten_build
cp build/app-demo.worker.js emscripten_build
cp build/app-demo.ww.js emscripten_build
- name: Archive emscripten_build
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit c170e70

Please sign in to comment.