File tree 2 files changed +11
-24
lines changed
2 files changed +11
-24
lines changed Original file line number Diff line number Diff line change @@ -3,45 +3,32 @@ name: Publish Release
3
3
on :
4
4
push :
5
5
tags : ['v[0-9]+\.[0-9]+\.[0-9]+.*']
6
- branches :
7
- - develop
8
- - main
9
6
workflow_dispatch : # Allow manual triggering from the GitHub UI
10
7
11
8
jobs :
12
- check-tag :
9
+ create-release :
13
10
runs-on : ubuntu-latest
14
11
15
12
steps :
13
+ # Step 1: Checkout code
16
14
- name : Checkout code
17
- uses : actions/checkout@v4.1.1
15
+ uses : actions/checkout@v3
18
16
19
- - name : Check if tag follows SemVer
20
- id : semver-check
17
+ # Step 2: Push tag to GitHub with the 'gh' remote
18
+ - name : Push tag to GitHub
21
19
run : |
22
- echo "github.event.ref: ${{ github.event.ref }}"
23
- echo "github.ref: ${{ github.ref }}"
24
- echo "github.ref_name: ${{ github.ref_name }}"
25
-
26
- create-release :
27
- runs-on : ubuntu-latest
28
- needs : check-tag
29
- if : needs.check-tag.result == 'success'
30
-
31
- steps :
32
- - name : Checkout code
33
-
20
+ git remote set-url gh [email protected] :jeanfrancoisgratton/helperFunctions.git
21
+ git push --follow-tags gh
34
22
23
+ # Step 3: Create Release on GitHub
35
24
- name : Create Release
36
25
id : create_release
37
- if : success()
38
26
uses : actions/create-release@v1
39
27
env :
40
28
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
41
29
with :
42
30
tag_name : ${{ github.ref_name }} # Use the tag name only
43
- release_name : Release ${{ env.TAG_NAME }} # Use the tag name only
44
- body : ${{ steps.release_notes.outputs.notes }}
31
+ release_name : Release ${{ github.ref_name }} # Use the tag name for release name
32
+ body : ' Release notes for ${{ github.ref_name }}' # Optional: Add more details if needed
45
33
draft : false
46
34
prerelease : false
47
-
Original file line number Diff line number Diff line change 1
- 1.8.0
1
+ 1.8.1
You can’t perform that action at this time.
0 commit comments