Skip to content

Commit 5bf62b0

Browse files
authored
Merge pull request #88 from nikaro/ci/publish-major-minor-tag
ci: publish major and minor tags
2 parents a49cac8 + 0121edc commit 5bf62b0

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

.github/workflows/bumpversion.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
- name: Create bump and changelog
1818
uses: commitizen-tools/commitizen-action@master
1919
with:
20-
github_token: "${{ secrets.GITHUB_TOKEN }}"
20+
github_token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
2121
changelog_increment_filename: body.md
2222
- name: Release
2323
uses: softprops/action-gh-release@v1
2424
with:
2525
body_path: "body.md"
2626
tag_name: "${{ env.REVISION }}"
2727
env:
28-
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
28+
GITHUB_TOKEN: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"

.github/workflows/update_semver.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Update Major Minor Tags
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- "**"
7+
tags:
8+
- "*.*.*"
9+
workflow_dispatch:
10+
11+
jobs:
12+
update_major_minor_tags:
13+
name: Make sure major and minor tags are up to date on a patch release
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
- name: Run Update semver
19+
uses: haya14busa/action-update-semver@v1

0 commit comments

Comments
 (0)