Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:

#- name: Upload Stryker output artefacts
# if: ${{ matrix.os == 'ubuntu-latest' }}
# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
# uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
# with:
# name: 'Stryker output artefacts'
# path: ${{ github.workspace }}/StrykerOutput/
Expand All @@ -204,7 +204,7 @@ jobs:
# run: dotnet publish -c Release --verbosity normal -o ./publish/

# - name: Archive publish results
# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
# uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
# with:
# name: Verifiable.Benchmarks
# path: ./publish/*
Expand All @@ -213,7 +213,7 @@ jobs:
# run: dotnet "./publish/Verifiable.Benchmarks.dll" -f "Verifiable.Benchmarks.*"

# - name: Upload benchmark results
# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
# uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
# with:
# name: Benchmark_Results
# path: ./BenchmarkDotNet.Artifacts/results/*
Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:

- name: Upload library NuGet packages
if: ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'lumoin' && github.actor != 'dependabot[bot]' }}
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: nupkg-libraries
path: ./nupkgs/*.*
Expand Down Expand Up @@ -432,7 +432,7 @@ jobs:
shell: bash

- name: Upload AOT RID packages (${{ matrix.os }})
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: nupkg-cli-aot-${{ matrix.os }}
path: ./nupkgs/*.nupkg
Expand All @@ -444,7 +444,7 @@ jobs:
# <rid> with PublishAot=true — no extra build work. Upload it so people
# without a .NET SDK can download and run the tool directly.
- name: Upload native CLI binaries (${{ matrix.os }})
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: cli-binaries-${{ matrix.os }}
path: src/Verifiable/bin/Release/net10.0/*/publish/Verifiable*
Expand Down Expand Up @@ -605,7 +605,7 @@ jobs:

- name: Upload CLI NuGet packages
if: ${{ github.actor != 'dependabot[bot]' }}
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: nupkg-cli
path: ./nupkgs/*.*
Expand Down
Loading