We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fda7047 commit 5ce271eCopy full SHA for 5ce271e
.github/workflows/build-and-publish.yml
@@ -100,8 +100,8 @@ jobs:
100
101
- name: define env variables
102
run: |
103
- echo "APP_VERSION=${{needs.get-version.outputs.APP_VERSION}}" >> $GITHUB_ENV
104
- echo "BUILD_ID=${{needs.get-version.outputs.BUILD_ID}}" >> $GITHUB_ENV
+ echo "APP_VERSION=${{needs.get-version.outputs.APP_VERSION}}" | Out-File -FilePath $env:GITHUB_ENV -Append
+ echo "BUILD_ID=${{needs.get-version.outputs.BUILD_ID}}" | Out-File -FilePath $env:GITHUB_ENV -Append
105
106
- name: Build Debug and Release
107
run: msbuild OSPSuite.Core.sln /p:Version=${{env.APP_VERSION}}
0 commit comments