Skip to content

Merge pull request #2 from BetssonGroup/ODO-11058-transition-to-new-r… #1

Merge pull request #2 from BetssonGroup/ODO-11058-transition-to-new-r…

Merge pull request #2 from BetssonGroup/ODO-11058-transition-to-new-r… #1

Workflow file for this run

name: Deploy-Docs
on:
push:
branches:
- master
jobs:
deploy:
runs-on: self-hosted
steps:
- uses: actions/checkout@v1
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: build
run: |
pip install mkdocs mkdocs_material
make docs
mkdocs build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site