From ae4ee9dd104eb589408f4f7a79499d7acbd95079 Mon Sep 17 00:00:00 2001 From: Allan Bowe Date: Tue, 25 May 2021 23:32:42 +0300 Subject: [PATCH] chore: automated commit --- .github/workflows/publish.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..f6a725f --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,29 @@ +name: Publish docs via GitHub Pages +on: + push: + branches: + - master + + +jobs: + build: + name: Deploy docs + runs-on: ubuntu-latest + steps: + + - name: Checkout master + uses: actions/checkout@v2 + + - name: Setup Python + uses: actions/setup-python@v1 + + - uses: BSFishy/pip-action@v1 + with: + packages: | + json-schema-for-humans + + - name: Deploy docs + uses: mhausenblas/mkdocs-deploy-gh-pages@1.16 + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + CUSTOM_DOMAIN: cli.sasjs.io \ No newline at end of file