Fixed broken link #14
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
# Regenerates the documentation for the "Command Reference" section of the site https://maester.dev | |
# | |
name: Build Docs Command Reference | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: ["main"] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update docs | |
run: ./build/Build-CommandReference.ps1 | |
shell: pwsh | |
- name: Update repo | |
run: | | |
if [[ `git status --porcelain` ]]; then | |
# Changes | |
echo "Updating command reference" | |
git config --global user.name 'Merill Fernando' | |
git config --global user.email '[email protected]' | |
git add -A && git commit -m "Bot: Updating command reference" | |
git push | |
else | |
# No changes | |
echo "No changes" | |
fi |