2022-12-21 19:57:15 +08:00
|
|
|
name: Netlify PR Preview
|
|
|
|
on:
|
2022-12-21 20:01:06 +08:00
|
|
|
workflow_run:
|
|
|
|
workflows: ["Build"]
|
|
|
|
types:
|
|
|
|
- completed
|
2022-12-21 20:36:00 +08:00
|
|
|
branches-ignore:
|
2022-12-21 21:09:41 +08:00
|
|
|
- "main"
|
2023-09-02 03:08:01 +08:00
|
|
|
- "livekit"
|
2022-12-21 19:57:15 +08:00
|
|
|
jobs:
|
2022-12-21 20:01:06 +08:00
|
|
|
deploy:
|
|
|
|
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request'
|
|
|
|
runs-on: ubuntu-latest
|
2022-12-21 20:36:00 +08:00
|
|
|
permissions:
|
|
|
|
deployments: write
|
2022-12-21 20:01:06 +08:00
|
|
|
environment: Netlify
|
|
|
|
steps:
|
|
|
|
- name: 📝 Create Deployment
|
|
|
|
uses: bobheadxi/deployments@v1
|
|
|
|
id: deployment
|
|
|
|
with:
|
|
|
|
step: start
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
env: Netlify
|
|
|
|
ref: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
desc: |
|
|
|
|
Do you trust the author of this PR? Maybe this build will steal your keys or give you malware.
|
|
|
|
Exercise caution. Use test accounts.
|
2022-12-21 19:57:15 +08:00
|
|
|
|
2022-12-21 20:01:06 +08:00
|
|
|
- id: prdetails
|
2023-09-19 14:46:16 +08:00
|
|
|
uses: matrix-org/pr-details-action@v1.3
|
2022-12-21 20:01:06 +08:00
|
|
|
with:
|
|
|
|
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
|
|
|
|
branch: ${{ github.event.workflow_run.head_branch }}
|
2022-12-21 19:57:15 +08:00
|
|
|
|
2022-12-21 20:01:06 +08:00
|
|
|
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action
|
|
|
|
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
|
|
|
|
- name: 📥 Download artifact
|
2023-12-15 20:23:15 +08:00
|
|
|
uses: dawidd6/action-download-artifact@v3
|
2022-12-21 20:01:06 +08:00
|
|
|
with:
|
|
|
|
run_id: ${{ github.event.workflow_run.id }}
|
2022-12-21 20:36:00 +08:00
|
|
|
name: build
|
2022-12-21 20:01:06 +08:00
|
|
|
path: webapp
|
2022-12-21 19:57:15 +08:00
|
|
|
|
2022-12-21 20:08:08 +08:00
|
|
|
- name: Add redirects file
|
|
|
|
# We fetch from github directly as we don't bother checking out the repo
|
2023-12-13 04:02:27 +08:00
|
|
|
run: curl -s https://raw.githubusercontent.com/element-hq/element-call/main/config/netlify_redirects > webapp/_redirects
|
2022-12-21 20:08:08 +08:00
|
|
|
|
|
|
|
- name: Add config file
|
2024-01-21 05:44:17 +08:00
|
|
|
run: curl -s "https://raw.githubusercontent.com/${{ github.event.workflow_run.head_repository.full_name }}/${{ github.event.workflow_run.head_branch }}/config/element_io_preview.json" > webapp/config.json
|
2022-12-21 20:08:08 +08:00
|
|
|
|
2022-12-21 20:01:06 +08:00
|
|
|
- name: ☁️ Deploy to Netlify
|
|
|
|
id: netlify
|
2023-09-27 06:41:44 +08:00
|
|
|
uses: nwtgck/actions-netlify@v2.1
|
2022-12-21 20:01:06 +08:00
|
|
|
with:
|
|
|
|
publish-dir: webapp
|
|
|
|
deploy-message: "Deploy from GitHub Actions"
|
|
|
|
# These don't work because we're in workflow_run
|
|
|
|
enable-pull-request-comment: false
|
|
|
|
enable-commit-comment: false
|
|
|
|
alias: pr${{ steps.prdetails.outputs.pr_id }}
|
|
|
|
env:
|
|
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
|
|
timeout-minutes: 1
|
2022-12-21 19:57:15 +08:00
|
|
|
|
2022-12-21 20:01:06 +08:00
|
|
|
- name: 🚦 Update deployment status
|
|
|
|
uses: bobheadxi/deployments@v1
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
step: finish
|
|
|
|
override: false
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
status: ${{ job.status }}
|
|
|
|
env: ${{ steps.deployment.outputs.env }}
|
|
|
|
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
|
|
|
env_url: ${{ steps.netlify.outputs.deploy-url }}
|
|
|
|
desc: |
|
|
|
|
Do you trust the author of this PR? Maybe this build will steal your keys or give you malware.
|
|
|
|
Exercise caution. Use test accounts.
|