2022-03-11 13:00:56 +00:00
|
|
|
# Triggers after the layered build has finished, taking the artifact
|
|
|
|
# and uploading it to netlify
|
2021-08-09 17:35:36 +00:00
|
|
|
name: Upload Preview Build to Netlify
|
|
|
|
on:
|
2022-04-21 11:55:32 +00:00
|
|
|
workflow_run:
|
2024-04-29 16:20:06 +00:00
|
|
|
workflows: ["End to End Tests"]
|
2022-04-21 11:55:32 +00:00
|
|
|
types:
|
|
|
|
- completed
|
2021-08-09 17:35:36 +00:00
|
|
|
jobs:
|
2022-04-27 09:24:38 +00:00
|
|
|
deploy:
|
2022-06-06 10:37:48 +00:00
|
|
|
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request'
|
2022-04-21 11:55:32 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-06-08 15:00:47 +00:00
|
|
|
environment: Netlify
|
2022-04-21 11:55:32 +00:00
|
|
|
steps:
|
2022-05-13 22:25:50 +00:00
|
|
|
- name: 📝 Create Deployment
|
2024-04-03 10:33:52 +00:00
|
|
|
uses: bobheadxi/deployments@648679e8e4915b27893bd7dbc35cb504dc915bc8 # v1
|
2022-04-27 09:24:38 +00:00
|
|
|
id: deployment
|
|
|
|
with:
|
2022-04-29 10:07:42 +00:00
|
|
|
step: start
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
env: Netlify
|
2022-04-27 11:39:14 +00:00
|
|
|
ref: ${{ github.event.workflow_run.head_sha }}
|
2022-04-29 10:07:42 +00: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.
|
2021-08-09 17:35:36 +00:00
|
|
|
|
2022-05-13 22:25:50 +00:00
|
|
|
- name: 📥 Download artifact
|
2024-01-19 08:54:49 +00:00
|
|
|
uses: actions/download-artifact@v4
|
2022-04-21 11:55:32 +00:00
|
|
|
with:
|
2024-01-19 09:30:15 +00:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2024-01-19 08:54:49 +00:00
|
|
|
run-id: ${{ github.event.workflow_run.id }}
|
2024-04-29 16:20:06 +00:00
|
|
|
name: webapp
|
2022-05-13 22:25:50 +00:00
|
|
|
path: webapp
|
2022-04-21 11:55:32 +00:00
|
|
|
|
2023-11-23 08:19:33 +00:00
|
|
|
- name: 📤 Deploy to Netlify
|
2023-11-28 21:45:51 +00:00
|
|
|
uses: matrix-org/netlify-pr-preview@v3
|
2022-04-21 11:55:32 +00:00
|
|
|
with:
|
2023-11-23 08:19:33 +00:00
|
|
|
path: webapp
|
|
|
|
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
|
|
|
|
branch: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
revision: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
site_id: ${{ secrets.NETLIFY_SITE_ID }}
|
|
|
|
deployment_env: ${{ steps.deployment.outputs.env }}
|
2022-04-27 09:24:38 +00:00
|
|
|
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
2022-04-29 10:07:42 +00:00
|
|
|
desc: |
|
2022-04-27 09:24:38 +00:00
|
|
|
Do you trust the author of this PR? Maybe this build will steal your keys or give you malware.
|
|
|
|
Exercise caution. Use test accounts.
|