-
Notifications
You must be signed in to change notification settings - Fork 2
110 lines (96 loc) · 4.12 KB
/
tf-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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#
# PLEASE NOTE: Managed workflow - do not change manually
#
name: Release
on:
workflow_dispatch: {}
concurrency:
# only run one publishing at a time to avoid conflicts
group: publish-${{ github.ref }}
env:
# renovate: datasource=npm depName=@semantic-release/changelog
SEMANTIC_RELEASE_CHANGELOG_VERSION: 6.0.3
# renovate: datasource=npm depName=@semantic-release/git
SEMANTIC_RELEASE_GIT_VERSION: 10.0.1
# renovate: datasource=npm depName=conventional-changelog-conventionalcommits
CONVENTIONAL_CHANGELOG_CONVENTIONALCOMMITS_VERSION: 7.0.2
jobs:
release:
name: Release
runs-on: ubuntu-latest
outputs:
release-published: ${{ steps.release.outputs.new_release_published }}
release-version: ${{ steps.release.outputs.new_release_version }}
steps:
- name: Determine app token for release
uses: actions/create-github-app-token@a0de6af83968303c8c955486bf9739a57d23c7f1 # v1.10.0
id: app-token
with:
app-id: ${{ secrets.WE_RELEASE_GITHUB_APP_ID }}
private-key: ${{ secrets.WE_RELEASE_GITHUB_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
token: ${{ steps.app-token.outputs.token }}
# Note: special permissions for push to protected branch required
# Credentials required for semantic-release-github-actions-tags
# persist-credentials: false
- name: Create release configuration file
if: ${{ hashFiles('.releaserc.yml') == '' }}
shell: bash
# TODO rather use a template?
run: |
cat <<EOF > .releaserc.yml
---
branches: ${{ github.head_ref || github.ref_name }}
plugins:
- - "@semantic-release/commit-analyzer"
# see https://github.com/semantic-release/commit-analyzer?tab=readme-ov-file#options
- preset: conventionalcommits
- - "@semantic-release/release-notes-generator"
# see https://github.com/semantic-release/release-notes-generator?tab=readme-ov-file#options
- preset: conventionalcommits
presetConfig:
issuePrefixes: ['ING-', 'WGS-', 'SVC-']
issueUrlFormat: 'https://wetransform.atlassian.net/browse/{{prefix}}{{id}}'
parserOpts:
# https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#referenceactions
# set to null to reference an issue without action (but will still show it "closes" the issue in the changelog)
# referenceActions: null
- "@semantic-release/changelog"
- - "@semantic-release/git"
- assets:
- CHANGELOG.md
- "@semantic-release/github"
- 'semantic-release-github-actions-tags'
EOF
- name: Install NodeJs
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20
- name: Release
id: release
uses: cycjimmy/semantic-release-action@cb425203a562475bca039ba4dbf90c7f9ac790f4 # v4.1.0
env:
# Permissions needed
# contents: write
# issues: write
# pull-requests: write
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
GIT_AUTHOR_NAME: wetransform Bot
GIT_AUTHOR_EMAIL: 113353961+wetransformer@users.noreply.github.com
GIT_COMMITTER_NAME: wetransform Bot
GIT_COMMITTER_EMAIL: 113353961+wetransformer@users.noreply.github.com
RUNNER_DEBUG: 1
with:
# dry_run: true
semantic_version: 23.0.8
extra_plugins:
"@semantic-release/changelog@\
${{ env.SEMANTIC_RELEASE_CHANGELOG_VERSION }} \
@semantic-release/git@\
${{ env.SEMANTIC_RELEASE_GIT_VERSION }} \
conventional-changelog-conventionalcommits@\
${{ env.CONVENTIONAL_CHANGELOG_CONVENTIONALCOMMITS_VERSION }} \
semantic-release-github-actions-tags@\
"