intro-to-hasura/.github/workflows/github-pages.yml

19 lines
370 B
YAML
Raw Normal View History

2021-07-19 22:31:02 +09:00
name: github-pages
on:
push:
branches: [main]
jobs:
main:
2022-07-30 13:05:46 +09:00
permissions:
pages: write
id-token: write
environment: github-pages
2021-07-19 22:31:02 +09:00
runs-on: ubuntu-latest
steps:
2023-03-01 15:30:44 +09:00
- uses: actions/checkout@v3
2023-03-01 15:35:31 +09:00
- run: make build
2022-07-30 13:05:46 +09:00
- uses: actions/upload-pages-artifact@v1
with:
2023-03-01 15:35:31 +09:00
path: dist
2022-07-30 13:05:46 +09:00
- uses: actions/deploy-pages@v1