2022-03-11 14:00:56 +01:00
|
|
|
# Triggers after the layered build has finished, taking the artifact
|
|
|
|
# and uploading it to netlify
|
2021-08-09 19:35:36 +02:00
|
|
|
name: Upload Preview Build to Netlify
|
|
|
|
on:
|
2022-12-12 12:24:14 +01:00
|
|
|
workflow_run:
|
2024-04-29 18:20:06 +02:00
|
|
|
workflows: ["End to End Tests"]
|
2022-12-12 12:24:14 +01:00
|
|
|
types:
|
|
|
|
- completed
|
2021-08-09 19:35:36 +02:00
|
|
|
jobs:
|
2022-12-12 12:24:14 +01:00
|
|
|
deploy:
|
2024-05-14 16:55:12 +02:00
|
|
|
if: github.event.workflow_run.conclusion != 'cancelled' && github.event.workflow_run.event == 'pull_request'
|
2022-12-12 12:24:14 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
environment: Netlify
|
|
|
|
steps:
|
|
|
|
- name: 📝 Create Deployment
|
2024-04-03 12:33:52 +02:00
|
|
|
uses: bobheadxi/deployments@648679e8e4915b27893bd7dbc35cb504dc915bc8 # v1
|
2022-12-12 12:24:14 +01:00
|
|
|
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.
|
2021-08-09 19:35:36 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
- name: 📥 Download artifact
|
2024-01-19 09:54:49 +01:00
|
|
|
uses: actions/download-artifact@v4
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
2024-01-19 10:30:15 +01:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2024-01-19 09:54:49 +01:00
|
|
|
run-id: ${{ github.event.workflow_run.id }}
|
2024-04-29 18:20:06 +02:00
|
|
|
name: webapp
|
2022-12-12 12:24:14 +01:00
|
|
|
path: webapp
|
2022-04-21 13:55:32 +02:00
|
|
|
|
2023-11-23 09:19:33 +01:00
|
|
|
- name: 📤 Deploy to Netlify
|
2023-11-28 22:45:51 +01:00
|
|
|
uses: matrix-org/netlify-pr-preview@v3
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
2023-11-23 09:19:33 +01: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-12-12 12:24:14 +01:00
|
|
|
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
|
|
|
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.
|