Skip to content

⚠️ Release

⚠️ Release #169

Workflow file for this run

name: ⚠️ Release
on:
workflow_dispatch:
inputs:
mode:
type: choice
description: Bump version as requested
required: true
options:
- minor
- patch
- major
jobs:
run-release:
name: Run release
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'chore(release)')"
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/run/[email protected]
id: release-it
with:
ref: ${{ github.ref }}
mode: ${{ github.event.inputs.mode }}
npmToken: ${{ secrets.TAIGA_UI_SCOPE_NPM_TOKEN }}
githubToken: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
- uses: taiga-family/ci/actions/run/[email protected]
id: info
with:
path: ./projects/editor/package.json
- name: Announce to Telegram
if: steps.release-it.outputs.released == 'true'
uses: taiga-family/ci/actions/messenger/telegram/[email protected]
with:
chatId: ${{ secrets.TAIGA_TELEGRAM_CHAT_ID }}
topicId: ${{ secrets.TAIGA_TELEGRAM_CHAT_THREAD_ID }}
token: ${{ secrets.TAIGA_TELEGRAM_BOT_TOKEN }}
version: v${{ steps.info.outputs.version }}
textLink: ${{ steps.info.outputs.name }}