2022-12-21 19:57:15 +08:00
|
|
|
name: Netlify PR Preview
|
|
|
|
on:
|
2024-04-12 03:32:59 +08:00
|
|
|
workflow_run:
|
|
|
|
workflows: ["Build"]
|
2022-12-21 20:01:06 +08:00
|
|
|
types:
|
2024-04-12 03:32:59 +08:00
|
|
|
- completed
|
2024-04-11 15:42:56 +08:00
|
|
|
|
2022-12-21 19:57:15 +08:00
|
|
|
jobs:
|
2022-12-21 20:01:06 +08:00
|
|
|
deploy:
|
2024-04-12 03:32:59 +08:00
|
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' }}
|
|
|
|
env:
|
2024-04-12 05:16:45 +08:00
|
|
|
PR_HEAD_FULL_NAME: ${{ github.event.workflow_run.head_repository.full_name }}
|
2022-12-21 20:01:06 +08:00
|
|
|
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:
|
2024-04-13 03:21:59 +08:00
|
|
|
- id: prdetails
|
|
|
|
uses: matrix-org/pr-details-action@v1.3
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
|
|
|
|
branch: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
|
2024-04-13 02:58:12 +08:00
|
|
|
|
2024-04-13 03:21:59 +08:00
|
|
|
steps.prdetails.outputs.data.head.ref
|
2024-04-13 02:58:12 +08:00
|
|
|
|
2024-04-12 03:32:59 +08:00
|
|
|
- run: ${{ tojson(github.event) }}
|
|
|
|
shell: cat {0}
|
|
|
|
|
2022-12-21 20:01:06 +08:00
|
|
|
- name: 📝 Create Deployment
|
|
|
|
uses: bobheadxi/deployments@v1
|
|
|
|
id: deployment
|
|
|
|
with:
|
|
|
|
step: start
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
env: Netlify
|
2024-04-13 03:21:59 +08:00
|
|
|
ref: ${{ steps.prdetails.outputs.data.head.sha || github.ref || github.head_ref }}
|
2022-12-21 20:01:06 +08:00
|
|
|
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
|
|
|
- name: 📥 Download artifact
|
2024-04-11 15:42:56 +08:00
|
|
|
uses: actions/download-artifact@v4
|
2022-12-21 20:01:06 +08:00
|
|
|
with:
|
2024-04-12 03:45:31 +08:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2024-04-12 05:26:03 +08:00
|
|
|
run-id: ${{ github.event.workflow_run.id }}
|
2024-04-11 15:42:56 +08:00
|
|
|
name: build-output
|
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-04-13 03:21:59 +08:00
|
|
|
run: curl -s "https://raw.githubusercontent.com/${{ env.PR_HEAD_FULL_NAME }}/${{ steps.prdetails.outputs.data.head.ref }}/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
|
2024-03-14 17:13:20 +08:00
|
|
|
uses: nwtgck/actions-netlify@v3.0
|
2022-12-21 20:01:06 +08:00
|
|
|
with:
|
|
|
|
publish-dir: webapp
|
|
|
|
deploy-message: "Deploy from GitHub Actions"
|
2024-04-13 03:21:59 +08:00
|
|
|
alias: pr${{ steps.prdetails.outputs.pr_id }}
|
2022-12-21 20:01:06 +08:00
|
|
|
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.
|