mirror of
https://github.com/DataDog/go-profiler-notes.git
synced 2026-06-22 17:36:52 +08:00
github pages
This commit is contained in:
parent
2a3c2759b8
commit
edc2ce6724
1 changed files with 27 additions and 0 deletions
27
.github/workflows/gh-pages.yml
vendored
Normal file
27
.github/workflows/gh-pages.yml
vendored
Normal file
|
|
@ -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
|
||||||
Loading…
Reference in a new issue