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 f484573 commit 27e4400Copy full SHA for 27e4400
.github/workflows/release-pipeline.yaml
@@ -10,7 +10,7 @@ jobs:
10
runs-on: ubuntu-latest
11
defaults:
12
run:
13
- working-directory: Sapling # Set the working directory for all commands
+ working-directory: Sapling
14
steps:
15
- name: Checkout code
16
uses: actions/checkout@v2
@@ -22,10 +22,11 @@ jobs:
22
23
# Get the version from the .csproj file
24
- name: Get .NET application version
25
26
id: get_version
27
run: |
- dotnet build --configuration Release
28
- VERSION=$(dotnet run --configuration Release -- --version | tr -d '\r\n')
+ dotnet run --no-build -- --version
29
+ VERSION=$(dotnet run --no-build -- --version | tr -d '\r\n')
30
echo "Application version: $VERSION"
31
echo "::set-output name=version::$VERSION"
32
0 commit comments