riot-web/.github/workflows/netlify.yaml

49 lines
2.1 KiB
YAML
Raw Normal View History

# Triggers after the layered build has finished, taking the artifact
# and uploading it to netlify
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
jobs:
2022-12-12 12:24:14 +01:00
deploy:
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
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.
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:
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
- name: 📤 Deploy to Netlify
uses: matrix-org/netlify-pr-preview@v3
2022-12-12 12:24:14 +01:00
with:
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.