From 39b89855770b7a742992ea274475addb14f9c52c Mon Sep 17 00:00:00 2001 From: SlejmUr Date: Wed, 4 Dec 2024 11:16:09 +0100 Subject: [PATCH] update upload artifact, and add build on linux --- .github/workflows/BUILD_Downloader.yml | 4 ++-- .github/workflows/BUILD_Dumperv2.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/BUILD_Downloader.yml b/.github/workflows/BUILD_Downloader.yml index a3b3cf1..f4d91e2 100644 --- a/.github/workflows/BUILD_Downloader.yml +++ b/.github/workflows/BUILD_Downloader.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - runs-on: [windows-latest] + runs-on: [windows-latest, ubuntu-latest] configuration: [Release] steps: - uses: actions/checkout@v3 @@ -37,7 +37,7 @@ jobs: run: dotnet publish Downloader/Downloader.csproj -c ${{ matrix.configuration }} --property:PublishDir=../Output - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Downloader path: Output diff --git a/.github/workflows/BUILD_Dumperv2.yml b/.github/workflows/BUILD_Dumperv2.yml index 86e8d77..cd0514d 100644 --- a/.github/workflows/BUILD_Dumperv2.yml +++ b/.github/workflows/BUILD_Dumperv2.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - runs-on: [windows-latest] + runs-on: [windows-latest, ubuntu-latest] configuration: [Release] steps: - uses: actions/checkout@v3 @@ -34,7 +34,7 @@ jobs: run: dotnet publish Dumperv2/Dumperv2.csproj -c ${{ matrix.configuration }} --property:PublishDir=../Output - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Dumperv2 path: Output