-
Notifications
You must be signed in to change notification settings - Fork 16
56 lines (54 loc) · 1.62 KB
/
release.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
46
47
48
49
50
51
52
53
54
55
56
name: ⚠️ Release
on:
push:
branches: [main]
paths:
- 'libs/**/*'
- '!libs/**/*.spec.ts'
- '!libs/**/*.md'
workflow_dispatch:
inputs:
forcePush:
type: boolean
required: false
description: --force-publish package
mode:
type: choice
description: force package to be versioned (depend --force-publish)
required: false
default: minor
options:
- patch
- minor
- major
- prerelease
jobs:
run-release:
name: Release
if: "!contains(github.event.head_commit.message, 'chore(release)')"
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.ANGULAR_RU_BOT_PAT }}
GITHUB_TOKEN: ${{ secrets.ANGULAR_RU_BOT_PAT }}
steps:
- uses: taiga-family/ci/actions/setup/[email protected]
with:
fetch-depth: 0
token: ${{ secrets.ANGULAR_RU_BOT_PAT }}
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/config/[email protected]
with:
token: ${{ secrets.ANGULAR_RU_BOT_PAT }}
- uses: taiga-family/ci/actions/setup/config/[email protected]
with:
token: ${{ secrets.NPM_TOKEN }}
- run: |
if [[ "${{ github.event.inputs.forcePush }}" == "true" ]]; then
if [[ "${{ github.event.inputs.mode }}" != "prerelease" ]]; then
npx release-it "${{ github.event.inputs.mode }}" --increment --ci
else
npx release-it --preRelease=alpha --ci
fi
else
npx release-it minor --increment --ci
fi