Skip to content

Commit

Permalink
Fix compatibility with GH pages
Browse files Browse the repository at this point in the history
  • Loading branch information
WarningImHack3r authored Aug 11, 2023
1 parent d88137c commit 4cbf92a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,15 @@ jobs:
run: pnpm i # no need for `--no-frozen-lockfile` here, as the sync is ensured by the `prechecks` job

- name: 🔨 Build repo
run: pnpm build
run: |
pnpm build
touch build/.nojekyll
- name: 📤 Upload artifact
if: github.event_name == 'push'
uses: actions/upload-pages-artifact@v2
with:
path: ./build
path: build

deploy:
name: Deploy website to GitHub Pages
Expand Down

0 comments on commit 4cbf92a

Please sign in to comment.