Skip to content

Commit 18e240b

Browse files
committed
update macos yml
1 parent c6598e3 commit 18e240b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/macos-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
- name: Read Tag Version
1717
run: |
1818
# https://stackoverflow.com/questions/4916492/git-describe-fails-with-fatal-no-names-found-cannot-describe-anything
19-
git describe --tags --always | awk -F . '{printf "RELEASE_VERSION=%s.%d",$1,$2+1}' | xargs echo > constants.env
19+
# git describe --tags --always | awk -F . '{printf "RELEASE_VERSION=%s.%d",$1,$2+1}' | xargs echo > constants.env
20+
git describe --tags --always | awk '{printf "RELEASE_VERSION=%s",$0}' | xargs echo > constants.env
2021
cat constants.env
2122
- name: Export Env
2223
uses: cardinalby/export-env-action@v2

0 commit comments

Comments
 (0)