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.
2 parents bf0e547 + 633fcbc commit d3e3a9bCopy full SHA for d3e3a9b
.github/workflows/release.yml
@@ -36,7 +36,9 @@ jobs:
36
needs: version
37
steps:
38
- name: Read app version into ENV
39
- run: cat .VERSION >> $APP_VERSION
+ run: |
40
+ VER=$(cat .VERSION)
41
+ echo "APP_VERSION=$VER" >> $GITHUB_ENV
42
43
- name: App version
44
run: echo Picked the app version ${{ env.APP_VERSION }}-${{ github.sha }}
@@ -64,7 +66,9 @@ jobs:
64
66
65
67
68
69
70
71
72
73
74
0 commit comments