Skip to content

Workflow file for this run

name: MkDocs Build + Deploy
on:
push:
branches:
- main # Set the branch you want to trigger the workflow on
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material pymdown-extensions
- name: Build MkDocs
run: mkdocs build --clean

Check failure on line 26 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
- name: Create and force push to documentation branch
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git checkout -b production
find . -type f ! -path './site*' ! -path './.*' -exec echo {} +
find . -type f ! -path './site*' ! -path './.*' -exec rm -f {} +
rm -rf docs
mv site docs
touch .nojekyll
git add .
git commit -m "Content update"
# Fetch and pull changes from the remote "production" branch:
git fetch origin production
git branch --set-upstream-to=origin/production production
git pull
# Backup the current state of the production branch
git branch backup-production
git checkout backup-production
git push origin backup-production
# Update the production branch with force push
git checkout production
git rebase origin/production
git push -f origin production