We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6598e3 commit 18e240bCopy full SHA for 18e240b
.github/workflows/macos-release.yml
@@ -16,7 +16,8 @@ jobs:
16
- name: Read Tag Version
17
run: |
18
# 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
+ # 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
21
cat constants.env
22
- name: Export Env
23
uses: cardinalby/export-env-action@v2
0 commit comments