element-web-Github/.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 19:24:14 +08:00
workflow_run:
2024-04-30 00:20:06 +08:00
workflows: ["End to End Tests"]
2022-12-12 19:24:14 +08:00
types:
- completed
jobs:
2022-12-12 19:24:14 +08:00
deploy:
if: github.event.workflow_run.conclusion != 'cancelled' && github.event.workflow_run.event == 'pull_request'
runs-on: ubuntu-24.04
2022-12-12 19:24:14 +08:00
environment: Netlify
steps:
- name: 📝 Create Deployment
uses: bobheadxi/deployments@648679e8e4915b27893bd7dbc35cb504dc915bc8 # v1
2022-12-12 19:24:14 +08: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 19:24:14 +08:00
- name: 📥 Download artifact
2024-01-19 16:54:49 +08:00
uses: actions/download-artifact@v4
2022-12-12 19:24:14 +08:00
with:
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
2024-01-19 16:54:49 +08:00
run-id: ${{ github.event.workflow_run.id }}
2024-04-30 00:20:06 +08:00
name: webapp
2022-12-12 19:24:14 +08:00
path: webapp
2022-04-21 19:55:32 +08:00
- name: 📤 Deploy to Netlify
uses: matrix-org/netlify-pr-preview@v3
2022-12-12 19:24:14 +08: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: ${{ vars.NETLIFY_SITE_ID }}
deployment_env: ${{ steps.deployment.outputs.env }}
2022-12-12 19:24:14 +08: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.