Skip to content

Commit

Permalink
one more time
Browse files Browse the repository at this point in the history
  • Loading branch information
arcadeperfect committed Aug 27, 2024
1 parent 428bddd commit e2ac22c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,14 @@ jobs:
cargo build --release --target wasm32-unknown-unknown
wasm-bindgen --out-dir ./out/ --target web ./target/wasm32-unknown-unknown/release/bevy_wireframe.wasm
- name: Prepare Deployment Directory
run: |
mkdir -p public/out
cp -r ./out/* public/out/
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./out # Deploy only the contents of the out directory
clean: true # Clean previous contents before deploying
folder: public # Deploy the public directory which contains the out subdirectory and other root files
clean: false # Don't remove existing files, as we want to keep other files in the root directory

0 comments on commit e2ac22c

Please sign in to comment.