Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienjuif committed Dec 2, 2023
1 parent e0e3051 commit 32c7c47
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,17 @@ jobs:
cargo install -f wasm-bindgen-cli
- name: Build wasm version
run: make release-wasm
- name: Create artifact
run: |
tar \
--dereference --hard-dereference \
-cvf "$RUNNER_TEMP/artifact.tar" \
--exclude=.git \
--exclude=.github \
target/web/release
# - name: Create artifact
# run: |
# tar \
# --dereference --hard-dereference \
# -cvf "$RUNNER_TEMP/artifact.tar" \
# --exclude=.git \
# --exclude=.github \
# target/web/release
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
name: github-pages
path: ${{ runner.temp }}/artifact.tar
retention-days: 1
if-no-files-found: error
path: target/web/release
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v2

0 comments on commit 32c7c47

Please sign in to comment.