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