Skip to content

TASK: Translated using Weblate (Portuguese) #653

TASK: Translated using Weblate (Portuguese)

TASK: Translated using Weblate (Portuguese) #653

Workflow file for this run

name: Build API documentation
on:
workflow_dispatch:
push:
branches: [ '[0-9]+.[0-9]' ]
jobs:
build-api-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build API documentation
uses: sudo-bot/action-doctum@v5
with:
config-file: .doctum.php
method: "update"
# use of --only-version fixes branch name in "View source" links to GitHub
cli-args: "--output-format=github --no-ansi --no-progress --ignore-parse-errors --only-version=${{ github.ref_name }}"
- name: Check out documentation site
uses: actions/checkout@v3
with:
repository: neos/neos.github.io
path: docs-site
- name: Move rendered docs to site
run: |
rm -rf docs-site/neos/${{ github.ref_name }}
mkdir -p docs-site/neos/${{ github.ref_name }}
mv build/* docs-site/neos/${{ github.ref_name }}/
- name: Commit update
run: |
cd docs-site
git config --local --unset-all "http.https://github.com/.extraheader"
git config --global user.email "[email protected]"
git config --global user.name "Neos Bot"
if [ -z "$(git status --porcelain)" ]; then
echo "No changes to commit"
exit 0
fi
git add .
git commit -m "TASK: Update API docs from ${{ github.ref_name }}"
- name: Push to git
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.NEOS_BOT_TOKEN }}
repository: neos/neos.github.io
directory: docs-site
branch: main