mirror of
https://github.com/kou029w/chirimen-hands-on.git
synced 2025-01-30 22:08:06 +00:00
19 lines
414 B
YAML
19 lines
414 B
YAML
|
name: github-pages
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
jobs:
|
||
|
main:
|
||
|
permissions:
|
||
|
pages: write
|
||
|
id-token: write
|
||
|
environment: github-pages
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- 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
|