Skip to content

Commit 1ff45a2

Browse files
ACTION: fix version suffix in dotnet pack cli
1 parent 582222f commit 1ff45a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ jobs:
7474

7575
- name: Pack QueryBuilder
7676
if: matrix.os == 'ubuntu-latest'
77-
run: dotnet pack -v normal -c Release --no-restore --include-symbols --include-source -p:PackageVersion=$GITHUB_RUN_ID QueryBuilder/QueryBuilder.csproj
77+
run: dotnet pack -v normal -c Release --no-restore --include-symbols --include-source --version-suffix=$GITHUB_RUN_ID QueryBuilder/QueryBuilder.csproj
7878

7979
- name: Pack SqlKata.Execution
8080
if: matrix.os == 'ubuntu-latest'
81-
run: dotnet pack -v normal -c Release --no-restore --include-symbols --include-source -p:PackageVersion=$GITHUB_RUN_ID SqlKata.Execution/SqlKata.Execution.csproj
81+
run: dotnet pack -v normal -c Release --no-restore --include-symbols --include-source --version-suffix=$GITHUB_RUN_ID SqlKata.Execution/SqlKata.Execution.csproj
8282

8383
- name: Upload QueryBuilder Artifact
8484
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)