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

22 lines
460 B
YAML
Raw Normal View History

2021-07-19 22:31:02 +09:00
name: github-pages
on:
push:
2024-01-29 15:09:50 +09:00
branches:
- main
2021-07-19 22:31:02 +09:00
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:
2024-02-01 00:35:21 +09:00
- name: Install CJK fonts
run: sudo apt-get install -y fonts-noto-cjk
2024-01-29 15:09:50 +09:00
- uses: actions/checkout@v4
2023-03-01 15:35:31 +09:00
- run: make build
2024-01-29 15:09:50 +09:00
- uses: actions/upload-pages-artifact@v3
2022-07-30 13:05:46 +09:00
with:
2023-03-01 15:35:31 +09:00
path: dist
2024-01-29 15:09:50 +09:00
- uses: actions/deploy-pages@v4