Skip to content

preview

preview #34

Workflow file for this run

name: preview
on:
workflow_run:
workflows: ["build"]
types:
- completed
permissions:
contents: read
pull-requests: write
jobs:
preview:
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-artifacts-${{ github.event.workflow_run.id }}
path: ./dist
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
# deploy
- name: Deploy to Cloudflare Pages
id: cloudflare-publish
uses: cloudflare/pages-action@v1.5.0
with:
branch: ${{ github.event.workflow_run.pull_requests[0].number }}
projectName: connect
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }}
directory: dist
- name: Comment URL on PR
uses: thollander/actions-comment-pull-request@v2
with:
message: |
<!-- _(run_id **${{ github.run_id }}**)_ -->
Welcome to connect! Make sure to:
* read the [contributing guidelines](https://github.com/commaai/connect?tab=readme-ov-file#contributing)
* mark your PR as a draft until it's ready to review
* post the preview on [Discord](https://discord.comma.ai); feedback from users will speedup the PR review
deployed preview: https://${{ github.event.workflow_run.pull_requests[0].number }}.connect-d5y.pages.dev
comment_tag: run_id
pr_number: ${{ github.event.workflow_run.pull_requests[0].number }}