.github: exclude .git directory in rsync --delete op #38
Workflow file for this run
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: Dotty the Documenteer | |
| on: | |
| push: | |
| branches: | |
| - doc | |
| paths: | |
| - 'doc/**' | |
| - 'README.md' | |
| - 'mkdocs.yml' | |
| - '.github/workflows/docs.yml' | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled] | |
| paths: | |
| - 'doc/**' | |
| - 'README.md' | |
| - 'mkdocs.yml' | |
| - '.github/workflows/docs.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Needed for git-revision-date-localized plugin | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| pipx install mkdocs | |
| pipx inject mkdocs mkdocs-material | |
| pipx inject mkdocs pymdown-extensions | |
| pipx inject mkdocs mkdocs-callouts | |
| - name: Build documentation | |
| run: mkdocs build --clean | |
| - name: Upload site artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: site | |
| path: site/ | |
| deploy: | |
| if: github.ref == 'refs/heads/doc' && github.event_name == 'push' | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download site artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: site | |
| path: site/ | |
| - name: Checkout pages repo | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: finit-project/finit-project.github.io | |
| path: pages | |
| ssh-key: ${{ secrets.DOCS_DEPLOY_KEY }} | |
| persist-credentials: false | |
| - name: Debug pages checkout | |
| run: | | |
| ls -la pages | |
| ls -la pages/.git || true | |
| - name: Sync site to pages repo | |
| run: | | |
| rsync -a --delete --exclude .git site/ pages/ | |
| - name: Commit and push | |
| run: | | |
| cd pages | |
| if [ -z "$(git status --porcelain)" ]; then | |
| exit 0 | |
| fi | |
| git config user.name "GitHub Actions" | |
| git config user.email "[email protected]" | |
| git add . | |
| git commit -m "docs: update" | |
| git push |