feat(Actions): Simple track action now select local variables #539
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install SiraDoc | |
run: npm install --global @siradoc/siradoc | |
- name: Build website | |
run: siradoc docs build | |
- name: Clone branch gh-pages | |
uses: actions/checkout@v4 | |
with: | |
path: 'gh-pages' | |
ref: gh-pages | |
- name: Move .git to build | |
run: mv './gh-pages/.git' './build' | |
- name: Push to pages | |
continue-on-error: true | |
run: | | |
cd './build' | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
git add . | |
git commit -m "Update pages" | |
git push |