Skip to content

Commit bf37c6b

Browse files
committed
chore: remove --no-build from pack to support multi-targeting
1 parent 35c5dd2 commit bf37c6b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/nuget.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,32 +33,32 @@ jobs:
3333
- name: Pack
3434
run: |
3535
dotnet pack src/Cosmo.Transport.Pipelines/Cosmo.Transport.Pipelines.csproj \
36-
-c Release --no-build \
36+
-c Release \
3737
-p:Version=${{ steps.version.outputs.VERSION }} \
3838
-o ./nupkgs
3939
4040
dotnet pack src/CosmoSQLClient.Core/CosmoSQLClient.Core.csproj \
41-
-c Release --no-build \
41+
-c Release \
4242
-p:Version=${{ steps.version.outputs.VERSION }} \
4343
-o ./nupkgs
4444
4545
dotnet pack src/CosmoSQLClient.MsSql/CosmoSQLClient.MsSql.csproj \
46-
-c Release --no-build \
46+
-c Release \
4747
-p:Version=${{ steps.version.outputs.VERSION }} \
4848
-o ./nupkgs
4949
5050
dotnet pack src/CosmoSQLClient.Postgres/CosmoSQLClient.Postgres.csproj \
51-
-c Release --no-build \
51+
-c Release \
5252
-p:Version=${{ steps.version.outputs.VERSION }} \
5353
-o ./nupkgs
5454
5555
dotnet pack src/CosmoSQLClient.MySql/CosmoSQLClient.MySql.csproj \
56-
-c Release --no-build \
56+
-c Release \
5757
-p:Version=${{ steps.version.outputs.VERSION }} \
5858
-o ./nupkgs
5959
6060
dotnet pack src/CosmoSQLClient.Sqlite/CosmoSQLClient.Sqlite.csproj \
61-
-c Release --no-build \
61+
-c Release \
6262
-p:Version=${{ steps.version.outputs.VERSION }} \
6363
-o ./nupkgs
6464

0 commit comments

Comments
 (0)