We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e1688 commit 799fc18Copy full SHA for 799fc18
.github/workflows/build-release.yml
@@ -17,7 +17,8 @@ jobs:
17
with:
18
dotnet-version: 3.1.100
19
- name: Build Version
20
- run: echo ::set-env name=RELEASE_VERSION::$(echo ${GITHUB_REF:11})
+ # run: echo ::set-env name=RELEASE_VERSION::$(echo ${GITHUB_REF:11}) // deprecated
21
+ run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV
22
- name: Build Project
23
run: dotnet build --configuration Release -p:Version=$RELEASE_VERSION
24
- name: Test Project
0 commit comments