Skip to content

Commit 6abfcb2

Browse files
author
Petr Sramek
committed
updated
1 parent de0221c commit 6abfcb2

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/actions/build/action.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,4 @@ runs:
6363
uses: actions/upload-artifact@v4
6464
with:
6565
name: ${{ inputs.build-artifacts-name }}
66-
path: |
67-
**/bin/*
68-
**/obj/*
69-
70-
71-
72-
66+
path: ${{ inputs.build-artifacts-glob-pattern }}

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
name: build
145145
- name: Pack with .NET
146146
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/
148148
- name: Upload Package
149149
uses: actions/upload-artifact@v4
150150
with:

0 commit comments

Comments
 (0)