Skip to content

Commit 82b9192

Browse files
Updated github action... a curse
1 parent caead92 commit 82b9192

File tree

2 files changed

+11
-24
lines changed

2 files changed

+11
-24
lines changed

.github/workflows/publish_release.yaml

+10-23
Original file line numberDiff line numberDiff line change
@@ -3,45 +3,32 @@ name: Publish Release
33
on:
44
push:
55
tags: ['v[0-9]+\.[0-9]+\.[0-9]+.*']
6-
branches:
7-
- develop
8-
- main
96
workflow_dispatch: # Allow manual triggering from the GitHub UI
107

118
jobs:
12-
check-tag:
9+
create-release:
1310
runs-on: ubuntu-latest
1411

1512
steps:
13+
# Step 1: Checkout code
1614
- name: Checkout code
17-
uses: actions/checkout@v4.1.1
15+
uses: actions/checkout@v3
1816

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
2119
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-
uses: actions/[email protected]
20+
git remote set-url gh [email protected]:jeanfrancoisgratton/helperFunctions.git
21+
git push --follow-tags gh
3422
23+
# Step 3: Create Release on GitHub
3524
- name: Create Release
3625
id: create_release
37-
if: success()
3826
uses: actions/create-release@v1
3927
env:
4028
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4129
with:
4230
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
4533
draft: false
4634
prerelease: false
47-

current_package_version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.0
1+
1.8.1

0 commit comments

Comments
 (0)