Deploy Artifacts to GitHub Pages #61
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: Deploy Artifacts to GitHub Pages | |
| on: | |
| workflow_run: | |
| workflows: ["CI"] | |
| types: [completed] | |
| jobs: | |
| deploy: | |
| if: github.event.workflow_run.conclusion != 'cancelled' | |
| runs-on: ubuntu-latest | |
| # Uncomment and configure if you need approval for deployments | |
| # environment: gh-pages-approval | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: gh-pages | |
| fetch-depth: 0 | |
| - name: 📥 Download API reference artifact | |
| uses: actions/download-artifact@v4 | |
| continue-on-error: true | |
| with: | |
| name: api-reference | |
| path: ./artifacts/api-reference | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| run-id: ${{ github.event.workflow_run.id }} | |
| - name: 📥 Download pytest-html-report artifact | |
| uses: actions/download-artifact@v4 | |
| continue-on-error: true | |
| with: | |
| name: pytest-html-report | |
| path: ./artifacts/pytest-html-report | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| run-id: ${{ github.event.workflow_run.id }} | |
| - name: 📥 Download UI service playwright report artifact | |
| uses: actions/download-artifact@v4 | |
| continue-on-error: true | |
| with: | |
| name: ui-service-playwright-report | |
| path: ./artifacts/ui-service-playwright-report | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| run-id: ${{ github.event.workflow_run.id }} | |
| - name: 📥 Download UI HTML visual testing playwright report artifact | |
| uses: actions/download-artifact@v4 | |
| continue-on-error: true | |
| with: | |
| name: ui-html-visual-testing-playwright-report | |
| path: ./artifacts/ui-html-visual-testing-playwright-report | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| run-id: ${{ github.event.workflow_run.id }} | |
| # this action exists in `gh-pages` branch | |
| - name: 📚 Download Build and Deploy Artifacts | |
| uses: ./.github/share-actions/build-and-deploy | |
| - name: Build deployment link | |
| if: github.event.workflow_run.event == 'pull_request' | |
| id: link | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| BRANCH_NAME="${{ github.event.workflow_run.head_branch }}" | |
| PR_NUMBER=$(gh pr list --repo "${{ github.repository }}" --head "$BRANCH_NAME" --json number --jq '.[0].number') | |
| BRANCH_NAME="${BRANCH_NAME//\//-}" | |
| if [ -n "$PR_NUMBER" ]; then | |
| echo "pr_number=${PR_NUMBER}" >> $GITHUB_OUTPUT | |
| echo "pages_path=pr-${PR_NUMBER}-${BRANCH_NAME}" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Comment on PR with deployment link | |
| if: steps.link.outputs.pr_number | |
| uses: marocchino/sticky-pull-request-comment@v2 | |
| with: | |
| number: ${{ steps.link.outputs.pr_number }} | |
| message: | | |
| 📚 Artifacts deployed to GitHub Pages: https://evidentlyai.github.io/evidently/ci/#${{ steps.link.outputs.pages_path }} |