Skip to content

Commit 66ca6b5

Browse files
Create publish.yml
1 parent 550b059 commit 66ca6b5

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-18.04
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Output to HTML
16+
uses: netwerk-digitaal-erfgoed/bikeshed-action@v1
17+
18+
- name: Publish HTML to GitHub Pages
19+
if: success()
20+
uses: peaceiris/actions-gh-pages@v3
21+
with:
22+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)