this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

deploy docs to gh pages

+11 -2
+11 -2
.github/workflows/build-docs.yml
··· 16 16 python3 -m pip install sphinx sphinx-rtd-theme sphinxcontrib-jquery 17 17 - name: Install atmst python module 18 18 run: | 19 - cd ${{ github.workspace }} 20 19 python3 -m pip install . 21 20 - name: Build the docs 22 21 run: | ··· 28 27 with: 29 28 name: html-docs 30 29 path: docs/_build/html/ 31 - - run: echo "This job's status is ${{ job.status }}." 30 + - name: Push docs to gh pages 31 + uses: cpina/github-action-push-to-another-repository@main 32 + env: 33 + SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} 34 + with: 35 + source-directory: docs/_build/html/ 36 + destination-github-username: DavidBuchanan314 37 + destination-repository-name: davidbuchanan314.github.io 38 + target-directory: atmst/ 39 + user-email: d@vidbuchanan.co.uk 40 + target-branch: master