Skip to content

Commit 2cdd139

Browse files
committed
release v1.0.25
1 parent 329903a commit 2cdd139

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/tagpush.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,16 @@ jobs:
99
runs-on: ubuntu-latest
1010
name: All
1111
steps:
12-
# TODO: Check why gh cli needs to be run within a git context
13-
- uses: actions/checkout@v4
12+
- id: tag
13+
run: echo "name=${GITHUB_REF#refs/tags/}" | tee -a "$GITHUB_OUTPUT"
1414
- name: create an issue
1515
env:
1616
GITHUB_TOKEN: ${{ github.token }}
1717
GITHUB_EVENT_PUSHER_NAME: ${{ github.event.pusher.name }}
18-
TITLE: manual release created (${GITHUB_REF#refs/tags/})
19-
ASSIGNEE: '@$GITHUB_EVENT_PUSHER_NAME'
18+
TITLE: manual release created (${{ steps.tag.outputs.name }})
2019
BODY: |
21-
@$GITHUB_EVENT_PUSHER_NAME just pushed a release tag: ${GITHUB_REF#refs/tags/}.
22-
Please manually verify validity (using [\`gorelease\`](https://pkg.go.dev/golang.org/x/exp/cmd/gorelease)), and update \`version.json\` to reflect the manually released version, if necessary.
20+
@${{ github.event.pusher.name }} just pushed a release tag: ${{ steps.tag.outputs.name }}.
21+
Please manually verify validity (using [`gorelease`](https://pkg.go.dev/golang.org/x/exp/cmd/gorelease)), and update `version.json` to reflect the manually released version, if necessary.
2322
In the future, please use the [automated process](https://github.com/ipdxco/unified-github-workflows/blob/master/VERSIONING.md).
2423
run: |
25-
gh issue create --title="$(echo "$TITLE" | envsubst)" --assignee="$(echo "$ASSIGNEE" | envsubst)" --body="$(echo "$BODY" | envsubst)" --repo="$GITHUB_REPO"
24+
gh issue create --title="$TITLE" --assignee="$GITHUB_EVENT_PUSHER_NAME" --body="$BODY" --repo="$GITHUB_REPOSITORY"

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [1.0.25] - 2025-06-15
10+
### Fixed
11+
- fixed the usage of GitHub env variables in the `tagpush` workflow
12+
913
## [1.0.24] - 2025-06-10
1014
### Added
1115
- support for `golangci-lint` in the `go-check` workflow

0 commit comments

Comments
 (0)