-
Notifications
You must be signed in to change notification settings - Fork 1
99 lines (94 loc) · 3.55 KB
/
new-release.yaml
File metadata and controls
99 lines (94 loc) · 3.55 KB
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
# Copyright 2024 Zaphiro Technologies
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Publish new release
concurrency:
group: ${{github.repository}}-new-release
cancel-in-progress: false
on:
workflow_dispatch: # Allow manual triggering
workflow_call:
inputs:
tag:
description: "Tag to be created (when empty, it will be automatically computed)"
required: false
type: string
default: ""
jobs:
create-new-release:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/create-github-app-token@v3
id: generate-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_SECRET }}
permission-contents: write
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
token: ${{ steps.generate-token.outputs.token }}
fetch-depth: 0
- name: "Validate semver"
if: ${{ inputs.tag != '' }}
run: |
regex='^([0-9]+)\.([0-9]+)\.([0-9]+)(-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*(\+[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?)?$'
if [[ "${{ inputs.tag }}" =~ $regex ]]; then
echo "${{ inputs.tag }} is a valid SemVer."
echo "NEWTAG=${{ inputs.tag }}" >> $GITHUB_ENV
else
echo "${{ inputs.tag }} is NOT a valid SemVer."
exit 1
fi
- name: "Get previous tag and compute next version"
id: version
if: ${{ inputs.tag == '' }}
shell: bash
run: |
# Get previous tag or use fallback
PREVTAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "0.0.0")
echo "previous_tag=${PREVTAG}" >> $GITHUB_OUTPUT
# Parse and increment patch version
IFS='.' read -r MAJOR MINOR PATCH <<< "${PREVTAG#v}"
PATCH=$((PATCH + 1))
NEWTAG="${MAJOR}.${MINOR}.${PATCH}"
echo "patch=${NEWTAG}" >> $GITHUB_OUTPUT
- name: "Set tag"
if: ${{ inputs.tag == '' }}
run: |
echo "NEWTAG=${{ steps.version.outputs.patch }}" >> $GITHUB_ENV
- name: "Update version using make"
run: |
make release TAG=${{ env.NEWTAG }}
- name: Commit version changes
run: |
git config --global user.name 'Bot'
git config --global user.email 'bot@zaphiro.ch'
git commit -am "Automated tag changes [dependabot skip]" || echo "No changes to commit"
- name: Create New Tag
run: |
git tag -a "v${{ env.NEWTAG }}" -m "Release v${{ env.NEWTAG }}"
git push --follow-tags
- name: Publish Release
env:
GH_TOKEN: ${{ steps.generate-token.outputs.token }}
run: |
# GitHub auto-creates releases for tags, so edit the existing one
gh release edit "v${{ env.NEWTAG }}" \
--title "Release v${{ env.NEWTAG }}" \
--generate-notes \
2>/dev/null || \
gh release create "v${{ env.NEWTAG }}" \
--title "Release v${{ env.NEWTAG }}" \
--generate-notes