Skip to content

Commit

Permalink
Merge pull request #4 from zostay/release-workflow-fix-version
Browse files Browse the repository at this point in the history
cicd: fix RELEASE_VERSION
  • Loading branch information
zostay authored Jan 17, 2024
2 parents f066e09 + 43dc05c commit ed9337b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
go-version: 1.21
- name: Release Version
run: echo RELEASE_VERSION=$(grep -Eo '[0-9]+\.[0-9]+\.[0-9]+.*$') >> $GITHUB_ENV
run: echo RELEASE_VERSION=$(echo $GITHUB_REF_NAME | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+.*$') >> $GITHUB_ENV
- name: Changes Heading Up-To-Date Check
run: |
date=$(date "+%Y-%m-%d")
Expand Down

0 comments on commit ed9337b

Please sign in to comment.