ci(ga): use native actions to deploy Pages

This commit is contained in:
Ming Di Leom 2024-06-07 10:50:04 +00:00
parent 81fac2ef57
commit 428a10d631
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 17 additions and 6 deletions

View File

@ -6,7 +6,7 @@ on:
- master
jobs:
pages:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@ -25,9 +25,20 @@ jobs:
run: npm install --include=optional --force
- name: Build
run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
force_orphan: true
path: ./public
deploy:
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4