go-profiler-notes/.github/workflows/gh-pages.yml
Felix Geisendörfer b4287a4a54 fix script
2022-12-29 14:04:52 +01:00

27 lines
724 B
YAML

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: "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: ./test