2023-11-14 11:54:42 +01:00
|
|
|
name: Release Process
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
mode:
|
|
|
|
description: What type of release
|
|
|
|
required: true
|
|
|
|
default: rc
|
|
|
|
type: choice
|
|
|
|
options:
|
|
|
|
- rc
|
|
|
|
- final
|
|
|
|
concurrency: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
|
|
release:
|
2023-11-24 15:33:55 +01:00
|
|
|
uses: matrix-org/matrix-js-sdk/.github/workflows/release-make.yml@develop
|
2023-11-14 16:27:31 +01:00
|
|
|
secrets:
|
|
|
|
ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
|
|
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
|
|
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
2023-11-14 11:54:42 +01:00
|
|
|
with:
|
|
|
|
final: ${{ inputs.mode == 'final' }}
|
|
|
|
include-changes: vector-im/element-web@$VERSION
|
|
|
|
gpg-fingerprint: ${{ vars.GPG_FINGERPRINT }}
|
|
|
|
expected-asset-count: 1
|