Skip to content

Commit

Permalink
Fix deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnsAnns committed May 6, 2024
1 parent c19ad66 commit a8fd29a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build_frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,21 @@ jobs:
- name: Build
run: bun run build

- name: Create frontend dist folder
run: mkdir frontend

- name: Reparent into dist/frontend
run: cp -r dist frontend/dist
run: cp -r dist frontend

- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: frontend/dist
folder: frontend/frontend
# Remove previous build files
clean: true
# Do not remove the `.nojekyll` file: we have manually added an empty `.nojekyll` file at the root of the `gh-pages` branch and we don't want having to re-create it after each build.
clean-exclude: |
.nojekyll
CNAME
docs

0 comments on commit a8fd29a

Please sign in to comment.