mirror of
https://github.com/vector-im/element-call.git
synced 2026-01-18 02:32:27 +00:00
* Embedded package build of Element Call Part of https://github.com/element-hq/element-call/issues/2994 This creates a new "embedded" build (vs "full" build) at the vite level. It will be used by a later PR that actually provides platform specific packages. Embedded build: - Uses relative URLs - Uses relative config.json path and other resource loading - Has a config.json built in - Doesn't include the public folder (e.g. favicon) Out of scope: - this doesn't attempt to exclude SPA functionality, so technically the build could be used in SPA - the above means that the crypto-wasm binary is included in the build * CI artifact name based on type of build * Update src/config/Config.ts
89 lines
2.9 KiB
YAML
89 lines
2.9 KiB
YAML
name: Deploy to Netlify
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
pr_number:
|
|
required: true
|
|
type: string
|
|
pr_head_full_name:
|
|
required: true
|
|
type: string
|
|
pr_head_ref:
|
|
required: true
|
|
type: string
|
|
deployment_ref:
|
|
required: true
|
|
type: string
|
|
artifact_run_id:
|
|
required: false
|
|
type: string
|
|
default: ${{ github.run_id }}
|
|
secrets:
|
|
ELEMENT_BOT_TOKEN:
|
|
required: true
|
|
NETLIFY_AUTH_TOKEN:
|
|
required: true
|
|
NETLIFY_SITE_ID:
|
|
required: true
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
deployments: write
|
|
environment: Netlify
|
|
steps:
|
|
- name: 📝 Create Deployment
|
|
uses: bobheadxi/deployments@648679e8e4915b27893bd7dbc35cb504dc915bc8 # v1
|
|
id: deployment
|
|
with:
|
|
step: start
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
env: Netlify
|
|
ref: ${{ inputs.deployment_ref }}
|
|
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.
|
|
|
|
- name: 📥 Download artifact
|
|
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
|
|
with:
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
run-id: ${{ inputs.artifact_run_id }}
|
|
name: build-output-full
|
|
path: webapp
|
|
|
|
- name: Add redirects file
|
|
# We fetch from github directly as we don't bother checking out the repo
|
|
run: curl -s https://raw.githubusercontent.com/element-hq/element-call/main/config/netlify_redirects > webapp/_redirects
|
|
|
|
- name: Add config file
|
|
run: curl -s "https://raw.githubusercontent.com/${{ inputs.pr_head_full_name }}/${{ inputs.pr_head_ref }}/config/config_netlify_preview.json" > webapp/config.json
|
|
|
|
- name: ☁️ Deploy to Netlify
|
|
id: netlify
|
|
uses: nwtgck/actions-netlify@4cbaf4c08f1a7bfa537d6113472ef4424e4eb654 # v3.0
|
|
with:
|
|
publish-dir: webapp
|
|
deploy-message: "Deploy from GitHub Actions"
|
|
alias: pr${{ inputs.pr_number }}
|
|
env:
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
timeout-minutes: 1
|
|
|
|
- name: 🚦 Update deployment status
|
|
uses: bobheadxi/deployments@648679e8e4915b27893bd7dbc35cb504dc915bc8 # 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.
|