Skip to content

Commit

Permalink
fix: fix deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiorigam committed Dec 27, 2024
1 parent bbdd39f commit 62fd6e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node v16 & GitHub registry
uses: actions/setup-node@v3
Expand All @@ -43,19 +43,19 @@ jobs:
yarn gh-pages-build
- name: Setup Pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v5

- name: Copy Builds
run: |
mkdir build
cp -r examples/sample-next-privy-app/dist build/next
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
# Upload build
path: './build'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit 62fd6e7

Please sign in to comment.