Merge pull request #20 from tenzir/topic/lint #6
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: Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| sync: | |
| name: Synchronize | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout tenzir/.github repo | |
| uses: actions/checkout@v4 | |
| with: | |
| path: dot-github | |
| - name: Checkout tenzir/docs repo | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: tenzir/docs | |
| token: ${{ secrets.TENZIR_DOCS_REPO_TOKEN }} | |
| path: docs | |
| - name: Generate docs pages | |
| run: | | |
| cd dot-github | |
| make docs | |
| - name: Copy files | |
| run: | | |
| cp -r dot-github/docs/* docs/ | |
| - name: Commit changes | |
| run: | | |
| cd docs | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add --update | |
| BEFORE=$(echo "${{ github.event.before }}" | cut -c 1-10) | |
| AFTER=$(echo "${{ github.event.after }}" | cut -c 1-10) | |
| if ! git diff --cached --quiet; then | |
| git commit -m "Sync files from tenzir/.github (${BEFORE}..${AFTER})" | |
| git push | |
| else | |
| echo "No changes to commit." | |
| fi |