chirimen-hands-on/.github/workflows/github-pages.yml

19 lines
370 B
YAML
Raw Normal View History

2022-10-05 22:06:10 +09:00
name: github-pages
on:
push:
branches: [main]
jobs:
main:
permissions:
pages: write
id-token: write
environment: github-pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2022-10-06 15:56:56 +09:00
- run: make build
2022-10-05 22:06:10 +09:00
- uses: actions/upload-pages-artifact@v1
with:
2022-10-06 15:56:56 +09:00
path: dist
2022-10-05 22:06:10 +09:00
- uses: actions/deploy-pages@v1