-
Notifications
You must be signed in to change notification settings - Fork 0
94 lines (90 loc) · 3.36 KB
/
new-release.yaml
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
# 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_call:
inputs:
tag:
description: 'Tag to be created (when empty, it will be automatically computed)'
required: false
type: string
default: ''
language:
description: 'Update pyproject.toml automatically'
required: false
type: string
default: ''
jobs:
create-new-release:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.REPO_PAT }}
fetch-depth: 0
- name: 'Validate semver'
if: ${{ inputs.tag != '' }}
run: |
local regex='^([0-9]+)\.([0-9]+)\.([0-9]+)(-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*(\+[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?)?$'
if [[ "$version" =~ $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'
id: previoustag
if: ${{ inputs.tag == '' }}
uses: "WyriHaximus/github-action-get-previous-tag@v1"
with:
fallback: 0.0.0 # Optional fallback tag to use when no tag can be found
- name: 'Get next minor version'
id: semvers
if: ${{ inputs.tag == '' }}
uses: "WyriHaximus/github-action-next-semvers@v1"
with:
version: ${{ steps.previoustag.outputs.tag }}
- name: 'Set tag'
if: ${{ inputs.tag == '' }}
run: |
echo "NEWTAG=${{ steps.semvers.outputs.patch }}" >> $GITHUB_ENV
- name: 'Update version in pyproject.toml'
if: ${{ inputs.language == 'python' }}
run: |
sed -i "s/version = \".*\"/version = \"$NEWTAG\"/g" pyproject.toml
- name: 'Update version in package.json'
if: ${{ inputs.language == 'javascript' }}
run: |
sudo apt install -y jq
jq '.version = env.NEWTAG' package.json > temp.json && mv temp.json package.json
- name: Commit tag changes
run: |
git config --global user.name 'Bot'
git config --global user.email '[email protected]'
git commit -am "Automated tag changes [dependabot skip]" || echo "No changes to commit"
git push
- name: Create New Tag
run: |
git tag -a "v${{ env.NEWTAG }}" -m "Release v${{ env.NEWTAG }}"
git push origin "v${{ env.NEWTAG }}"
- name: Publish Release
uses: softprops/action-gh-release@v2
with:
tag_name: "v${{ env.NEWTAG }}"