mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
name: Release Process
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
mode:
|
|
description: What type of release
|
|
required: true
|
|
default: rc
|
|
type: choice
|
|
options:
|
|
- rc
|
|
- final
|
|
matrix-react-sdk:
|
|
description: React SDK version to use (current|X.Y.Z)
|
|
required: false
|
|
default: current
|
|
type: string
|
|
matrix-js-sdk:
|
|
description: JS SDK version to use (current|X.Y.Z)
|
|
required: false
|
|
default: current
|
|
type: string
|
|
concurrency: ${{ github.workflow }}
|
|
jobs:
|
|
release:
|
|
uses: matrix-org/matrix-js-sdk/.github/workflows/release-action.yml@develop
|
|
secrets: inherit
|
|
with:
|
|
final: ${{ inputs.mode == 'final' }}
|
|
include-changes: matrix-react-sdk
|
|
gpg-fingerprint: ${{ vars.GPG_FINGERPRINT }}
|
|
asset-path: dist/*.tar.gz
|
|
expected-asset-count: 3
|
|
dependencies: |
|
|
matrix-react-sdk=${{ inputs.matrix-react-sdk }}
|
|
matrix-js-sdk=${{ inputs.matrix-js-sdk }}
|