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 ab79857 commit c6598e3Copy full SHA for c6598e3
.github/workflows/macos-release.yml
@@ -15,7 +15,8 @@ jobs:
15
uses: actions/checkout@v3
16
- name: Read Tag Version
17
run: |
18
- git describe --tags | awk -F . '{printf "RELEASE_VERSION=%s.%d",$1,$2+1}' | xargs echo > constants.env
+ # 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
20
cat constants.env
21
- name: Export Env
22
uses: cardinalby/export-env-action@v2
0 commit comments