-
Notifications
You must be signed in to change notification settings - Fork 470
45 lines (39 loc) · 1.47 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: ⚠️ Publish Taiga UI packages
on:
push:
branches: ['release/*']
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/config/[email protected]
with:
token: ${{ secrets.TAIGA_UI_SCOPE_NPM_TOKEN }}
- run: npx nx run-many -t publish
- uses: taiga-family/ci/actions/run/[email protected]
id: info
- name: Announce to Time messenger
uses: taiga-family/ci/actions/messenger/time/[email protected]
if: ${{ !contains(steps.info.outputs.version, 'rc') }}
with:
url: ${{ secrets.ANNOUNCE_WEBHOOK }}
channel: ${{ secrets.ANNOUNCE_TARGET }}
version: v${{ steps.info.outputs.version }}
- name: Announce to Telegram messenger
uses: taiga-family/ci/actions/messenger/telegram/[email protected]
if: ${{ !contains(steps.info.outputs.version, 'rc') }}
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: '@taiga-ui/cdk'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true