mirror of
https://github.com/kou029w/intro-to-graphql.git
synced 2025-01-18 16:08:03 +00:00
fix
This commit is contained in:
parent
5c52d1c4ff
commit
0d345f7c3a
3 changed files with 7 additions and 2 deletions
4
.github/workflows/github-pages.yml
vendored
4
.github/workflows/github-pages.yml
vendored
|
@ -11,8 +11,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- run: npx @marp-team/marp-cli README.md -o pages/index.html
|
- run: make build
|
||||||
- uses: actions/upload-pages-artifact@v1
|
- uses: actions/upload-pages-artifact@v1
|
||||||
with:
|
with:
|
||||||
path: pages
|
path: dist
|
||||||
- uses: actions/deploy-pages@v1
|
- uses: actions/deploy-pages@v1
|
||||||
|
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
dist
|
4
Makefile
Normal file
4
Makefile
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
.PHONY: build
|
||||||
|
build:
|
||||||
|
npx @marp-team/marp-cli README.md -o dist/index.html
|
||||||
|
rsync -av assets/ dist/assets/
|
Loading…
Add table
Reference in a new issue