mirror of
https://github.com/kou029w/intro-to-agile.git
synced 2025-01-18 16:08:01 +00:00
18 lines
414 B
YAML
18 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@v2
|
|
- 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
|