-
Notifications
You must be signed in to change notification settings - Fork 9
74 lines (62 loc) · 2.01 KB
/
create-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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Create Release
on:
workflow_dispatch:
inputs:
version_type:
type: choice
description: Semantic Version Type
options:
- major
- minor
- patch
- no-version-update
pre_release:
type: choice
description: Pre Rlease?
options:
- stable
- alpha
- beta
- rc
jobs:
release-it:
runs-on: ubuntu-latest
steps:
- uses: tibdex/github-app-token@v1
id: generate-token
with:
app_id: ${{ secrets.RELEASE_BOT_APP_ID }}
private_key: ${{ secrets.RELEASE_BOT_APP_PRIVATE_KEY }}
- name: checkout
uses: actions/checkout@v3
with:
token: ${{ steps.generate-token.outputs.token }}
# we need everything so release-it can compare the current version with the latest tag
fetch-depth: 0
- name: initialize mandatory git config
run: |
git config user.name "GitHub Release Bot"
git config user.email release-bot@neolution.ch
- name: install yarn packages
run: |
yarn --frozen-lockfile
- name: set NPM Token
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN_NEOLUTION }}
- name: run release-it
run: |
params=()
if [[ ${{ github.event.inputs.version_type }} != "no-version-update" ]]; then
params+=(${{ github.event.inputs.version_type }})
fi
if [[ ${{ github.event.inputs.pre_release }} != "stable" ]]; then
params+=(--preRelease=${{ github.event.inputs.pre_release }})
params+=(--plugins.@release-it/keep-a-changelog.keepUnreleased)
params+=(--no-plugins.@release-it/keep-a-changelog.strictLatest)
fi
params+=(--ci)
yarn release-it "${params[@]}"
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}