This repository was archived by the owner on Jan 29, 2026. It is now read-only.
Make the copyright header shorter #45
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: Continuous Integration | |
| on: | |
| # We have deploy there | |
| # push: | |
| # branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| # Build job | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| packages: read | |
| pull-requests: write | |
| env: | |
| PR_PATH: pull/${{github.event.number}} | |
| DOMAIN: gradle.github.io | |
| PREVIEW_REPO: community-site-preview | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: "true" | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install dependencies | |
| run: pip install -r .devcontainer/requirements.txt | |
| - name: Build the docs | |
| run: mkdocs build | |
| - name: Deploy to PR preview | |
| uses: peaceiris/actions-gh-pages@v4 | |
| if: github.ref != 'refs/heads/main' | |
| with: | |
| deploy_key: ${{ secrets.PREVIEW_DEPLOYMENT_KEY }} | |
| external_repository: gradle/${{ env.PREVIEW_REPO }} | |
| publish_dir: ./_site | |
| destination_dir: ${{ env.PR_PATH }} | |
| - name: Update comment | |
| uses: hasura/[email protected] | |
| if: github.ref != 'refs/heads/main' | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| repository: ${{ github.repository }} | |
| number: ${{ github.event.number }} | |
| id: deploy-preview | |
| message: > | |
| A preview of ${{ github.event.after }} is uploaded and can be seen here: | |
| ✨ https://${{ env.DOMAIN }}/${{ env.PREVIEW_REPO }}/${{ env.PR_PATH}}/ ✨ | |
| Changes may take a few minutes to propagate. |