generated from IRNAS/irnas-projects-template
-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (61 loc) · 2.08 KB
/
create-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
name: "Create Release"
on:
workflow_dispatch:
inputs:
version:
description:
"The version you want to release [v##.##.##]? (did you update
changelog?)"
required: true
env:
GIT_TERMINAL_PROMPT: 0
jobs:
update-changelog:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0 # Fetch history for all branches and tags
- name: Validate version input
id: validate-input
run: |
# Check if input version is in correct format
if [[ ! ${{ inputs.version }} =~ v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "::error::Invalid input version: wrong format!"
exit 1
fi
# Check if input version already exists as git tag
if [[ ! -z $(git tag | grep ${{ inputs.version }}) ]]; then
echo "::error::Invalid input version: it already exists!"
exit 1
fi
version_cut=$(echo "${{ inputs.version }}" | cut -c 2-)
echo "version_cut=$version_cut" >> $GITHUB_ENV
- name: Update Changelog
uses: thomaseizinger/[email protected]
with:
tag: ${{ inputs.version }}
# In order to make a commit, we need to initialize a user.
- name: Create Robot user
run: |
git config user.name "github-bot :robot:"
git config user.email [email protected]
- name: Commit Changelog, create tag and push
run: |
git add CHANGELOG.md
git commit -m "Update CHANGELOG.md for Release ${{ inputs.version }}"
git tag ${{ inputs.version }}
git push
git push origin ${{ inputs.version }}
call-publish-release:
needs: update-changelog
uses: ./.github/workflows/publish-release.yaml
with:
release_version: ${{ inputs.version }}
call-build-publish:
needs: update-changelog
uses: ./.github/workflows/build-and-publish-vanilla-zephyr.yaml
with:
release_version: ${{ inputs.version }}