-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (35 loc) · 1.09 KB
/
ig-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: IG Publisher to Github Pages
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main or master branch
push:
branches:
- main
- master
- staging
pull_request:
branches:
- main
- master
- staging
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run-publisher:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Run the IG publisher
uses: docker://hl7fhir/ig-publisher-base:latest
with:
args: ./scripts/run-ig-publisher.sh
# deploy implementation guide to github pages
- name: Deploy
if: (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main')
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output
force_orphan: true