Skip to content

try fix addon deploy #42

try fix addon deploy

try fix addon deploy #42

Workflow file for this run

name: "anima doc"

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

View workflow run for this annotation

GitHub Actions / .github/workflows/doc.yml

Invalid workflow file

`never` is not a valid event name
on: never
jobs:
build-docusaurus:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Build
run: |
cd docs
yarn install --frozen-lockfile --non-interactive
yarn build
- name: Deploy
run: |
cd docs
git clone https://ceceppa:${{ secrets.TOKEN }}@github.com/ceceppa/anima-doc.git
cd anima-doc
git config user.name "GitHub Actions Bot"
git config user.email "<[email protected]>"
rm -rf *
cp -r ../build/* .
git add .
uncommitted=$(git status --porcelain | grep -E "^( M |A )")
if [[ -z "$uncommitted" ]]; then
echo "No changes to commit"
exit 0
fi
git commit -m "Update docs"
git push origin main
exit 0