File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 63
63
uses : actions/upload-artifact@v4
64
64
with :
65
65
name : ${{ inputs.build-artifacts-name }}
66
- path : |
67
- **/bin/*
68
- **/obj/*
69
-
70
-
71
-
72
-
66
+ path : ${{ inputs.build-artifacts-glob-pattern }}
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ jobs:
144
144
name : build
145
145
- name : Pack with .NET
146
146
run : |
147
- dotnet pack ${{ vars.SRC_DEFAULT_GLOB_PATTERN }} --configuration ${{ env.build-configuration }} /p:Platform="${{ env.build-platform }}" /p:PackageVersion=${{ env.PACKAGE_VERSION }} /p:Version=${{ env.ASSEMBLY_VERSION }} /p:AssemblyInformationalVersion=${{ env.ASSEMBLY_INFORMATIONAL_VERSION }} /p:FileVersion=${{ env.FILE_VERSION }} --output ${{ runner.temp }}/packages/
147
+ dotnet pack ${{ vars.SRC_DEFAULT_GLOB_PATTERN }} --no-build --no-restore -- configuration ${{ env.build-configuration }} /p:Platform="${{ env.build-platform }}" /p:PackageVersion=${{ env.PACKAGE_VERSION }} /p:Version=${{ env.ASSEMBLY_VERSION }} /p:AssemblyInformationalVersion=${{ env.ASSEMBLY_INFORMATIONAL_VERSION }} /p:FileVersion=${{ env.FILE_VERSION }} --output ${{ runner.temp }}/packages/
148
148
- name : Upload Package
149
149
uses : actions/upload-artifact@v4
150
150
with :
You can’t perform that action at this time.
0 commit comments