2021-05-27 19:54:00 +09:00
|
|
|
name: github-pages
|
|
|
|
on:
|
|
|
|
push:
|
2024-12-03 22:32:04 +09:00
|
|
|
branches:
|
|
|
|
- main
|
2021-05-27 19:54:00 +09:00
|
|
|
jobs:
|
|
|
|
main:
|
2022-08-01 17:43:29 +09:00
|
|
|
permissions:
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
|
|
|
environment: github-pages
|
2021-05-27 19:54:00 +09:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-27 11:33:51 +09:00
|
|
|
- uses: actions/checkout@v4
|
2023-01-17 19:11:57 +09:00
|
|
|
- run: make build
|
2024-12-03 22:32:04 +09:00
|
|
|
- uses: actions/upload-pages-artifact@v3
|
2022-08-01 17:43:29 +09:00
|
|
|
with:
|
2023-01-17 19:11:57 +09:00
|
|
|
path: dist
|
2024-12-03 22:32:04 +09:00
|
|
|
- uses: actions/deploy-pages@v4
|