We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1806f0e commit a0f1af7Copy full SHA for a0f1af7
1 file changed
.github/workflows/build.yml
@@ -24,10 +24,11 @@ jobs:
24
run: dotnet build --no-restore -c Release
25
26
- name: Create Package
27
- run: dotnet pack --no-restore --no-build -c Release -o ./publish
+ run: dotnet pack --no-build -c Release -o ./publish
28
29
- name: Create packages artifact
30
- uses: actions/upload-artifact@v2
+ if: ${{ matrix.os == 'windows-latest' }}
31
+ uses: actions/upload-artifact@v4
32
with:
33
name: Packages
34
path: ./src/publish/
0 commit comments