Skip to content

chore: to work

chore: to work #967

Workflow file for this run

name: Docs

Check failure on line 1 in .github/workflows/docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docs.yml

Invalid workflow file

(Line: 47, Col: 7): Unexpected value 'working-directory'
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@v6
- name: Install SiraDoc
run: npm install --global @siradoc/siradoc
- name: Build website
run: siradoc docs build
- name: Clone branch gh-pages
uses: actions/checkout@v6
with:
path: 'gh-pages'
ref: gh-pages
persist-credentials: false
fetch-depth: 0
- name: Move .git to build
run: mv './gh-pages/.git' './build'
- name: Set git config
run: |
git config user.name github-actions
git config user.email [email protected]
git config receive.denynonfastforwards false
- name: Push to pages
continue-on-error: true
uses: jcs-actions/github-push-action@master
working-directory: ./build
with:
github_token: ${{ secrets.PAT }}
branch: gh-pages
rebase: true
force: false
retry: 3