Skip to content

Commit

Permalink
gh-pages.yml should now unpack the correct release.zip
Browse files Browse the repository at this point in the history
  • Loading branch information
trbKnl committed Aug 1, 2024
1 parent 640e978 commit 7d14804
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
run: npm run release

- name: Unpack release
run: unzip -o release.zip -d build
run: |
RELEASE_FILE=$(ls releases/*.zip | head -n 1)
unzip -o "$RELEASE_FILE" -d build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "feldspar",
"name": "port",
"version": "0.1.0",
"private": true,
"homepage": ".",
Expand Down

0 comments on commit 7d14804

Please sign in to comment.