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 038c289 commit f484573Copy full SHA for f484573
.github/workflows/release-pipeline.yaml
@@ -24,7 +24,8 @@ jobs:
24
- name: Get .NET application version
25
id: get_version
26
run: |
27
- VERSION=$(dotnet run --no-build --configuration Release -- --version | tr -d '\r\n')
+ dotnet build --configuration Release
28
+ VERSION=$(dotnet run --configuration Release -- --version | tr -d '\r\n')
29
echo "Application version: $VERSION"
30
echo "::set-output name=version::$VERSION"
31
0 commit comments