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

19 lines
414 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
2022-08-01 17:43:29 +09:00
- run: npx @marp-team/marp-cli README.md -o pages/index.html
- uses: actions/upload-pages-artifact@v1
with:
path: pages
- uses: actions/deploy-pages@v1