From edc2ce67242ee119abf428e88831e5a0d4df2259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Tue, 27 Dec 2022 14:44:21 +0100 Subject: [PATCH] github pages --- .github/workflows/gh-pages.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..baeda3c --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,27 @@ +name: GitHub Pages + +on: + push: + branches: + - sphinx # Set a branch name to trigger deployment + pull_request: + +jobs: + deploy: + runs-on: ubuntu-22.04 + permissions: + contents: write + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + steps: + - uses: actions/checkout@v3 + - run: echo "mkdir -p test && echo hi > test/index.html" + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + # If you're changing the branch from main, + # also change the `main` in `refs/heads/main` + # below accordingly. + if: ${{ github.ref == 'refs/heads/sphinx' }} + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./testt