Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nagisa committed Feb 11, 2025
1 parent b8d1c50 commit 84b3c8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: cachix/install-nix-action@v27
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix develop -c 'just ghpages'
- run: nix develop -c 'just' 'ghpages'
- uses: actions/upload-pages-artifact@v3
with:
path: _site/
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build *BUILDFLAGS: # pass `--dev --no-opt` for debugging the glue itself
wasm-pack build --target=web {{ BUILDFLAGS }}

ghpages: build
mkdir _site
mkdir -p _site
cp -v *.html _site
cp -v *.js _site
cp -v *.css _site
Expand Down

0 comments on commit 84b3c8c

Please sign in to comment.