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

19 lines
370 B
YAML
Raw Normal View History

2021-05-27 19:54:00 +09:00
name: github-pages
on:
push:
2021-05-28 01:22:28 +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:
- uses: actions/checkout@v2
2023-01-17 19:11:57 +09:00
- run: make build
2022-08-01 17:43:29 +09:00
- uses: actions/upload-pages-artifact@v1
with:
2023-01-17 19:11:57 +09:00
path: dist
2022-08-01 17:43:29 +09:00
- uses: actions/deploy-pages@v1