Update Documentation #27
This file contains hidden or 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
| name: Update Documentation | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Update Documentation | |
| if: ${{ github.ref == 'refs/heads/main' }} | |
| run: | | |
| echo "❌ This workflow cannot be run from the main branch." | |
| echo "Please pin to a release, use another branch or commit SHA instead of @main." | |
| exit 1 |