use upload-pages-artifact@v2 and deploy-pages@v2

This commit is contained in:
Nebel 2023-08-28 17:38:28 +09:00
parent 0dd22b9f32
commit 8398c8b835
Signed by: nebel
GPG key ID: 79807D08C6EF6460

View file

@ -1,18 +1,25 @@
name: github-pages
on:
push:
branches: [main]
branches: main
jobs:
main:
permissions:
pages: write
id-token: write
environment: github-pages
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make build
- uses: actions/upload-pages-artifact@v1
- uses: actions/upload-pages-artifact@v2
with:
path: dist
- uses: actions/deploy-pages@v1
deploy:
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
permissions:
pages: write
id-token: write
needs: build
runs-on: ubuntu-latest
steps:
- id: deploy
uses: actions/deploy-pages@v2