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:
|
|
|
|
PR_NUMBER: ${{ github.event.workflow_run.pull_requests[0].number }}
|
2024-04-12 05:16:45 +08:00
|
|
|
PR_HEAD_FULL_NAME: ${{ github.event.workflow_run.head_repository.full_name }}
|
2024-04-12 03:32:59 +08:00
|
|
|
PR_HEAD_REF: ${{ github.event.workflow_run.pull_requests[0].head.ref }}
|
|
|
|
PR_HEAD_SHA: ${{ github.event.workflow_run.pull_requests[0].head.sha }}
|
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 02:58:12 +08:00
|
|
|
- name: "Get PR information"
|
|
|
|
uses: potiuk/get-workflow-origin@v1_3
|
|
|
|
id: pr-info
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
sourceRunId: ${{ github.event.workflow_run.id }}
|
|
|
|
|
|
|
|
- name: Update env.PR_NUMBER if empty
|
|
|
|
run: |
|
|
|
|
if [ -z "$PR_NUMBER" ]; then
|
|
|
|
echo "PR_NUMBER=${{ steps.source-run-info.outputs.pullRequestNumber }}" >> $GITHUB_ENV
|
|
|
|
fi
|
|
|
|
|
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-12 03:32:59 +08:00
|
|
|
ref: ${{ env.PR_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-12 05:16:45 +08:00
|
|
|
run: curl -s "https://raw.githubusercontent.com/${{ env.PR_HEAD_FULL_NAME }}/${{ env.PR_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-12 03:32:59 +08:00
|
|
|
alias: pr${{ env.PR_NUMBER }}
|
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.
|