Merge pull request #4692 from ministryofjustice/AntonyBishop-patch-1 #808
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish runbooks | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ministryofjustice/tech-docs-github-pages-publisher:v2 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Compile Markdown to HTML and create artifact | |
run: | | |
cd runbooks; /scripts/compile-and-create-artifact.sh | |
- name: Install rsync | |
run: | | |
apk update && apk add rsync | |
which rsync | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
token: ${{ secrets.PUBLISHING_GIT_TOKEN }} | |
git-config-name: cloud-platform-moj | |
git-config-email: [email protected] | |
repository-name: ministryofjustice/cloud-platform-runbooks | |
branch: gh-pages # The branch the action should deploy to. | |
folder: runbooks/docs # The folder the action should deploy. | |
clean: true | |
clean-exclude: | | |
CNAME | |
License | |
README.md |