From b32d5cef4563af35c908fd0bbfabc3c1f49b62c3 Mon Sep 17 00:00:00 2001 From: Govorunb Date: Fri, 5 Jul 2024 10:09:47 +1000 Subject: [PATCH] surely if i just make the number higher the green checkmark will stay and the orange triangle will somehow magically disappear --- .github/workflows/build.yml | 8 ++++---- .github/workflows/create-package.yml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bef69d7c..e7a09024 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build +name: Build on: push: @@ -27,14 +27,14 @@ jobs: with: submodules: recursive - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0 + dotnet-version: 8 - name: Build mod run: dotnet build SCHIZO.sln -c ${{ matrix.configuration }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: SCHIZO-${{ matrix.configuration }} path: SCHIZO/bin/${{ matrix.configuration }}/net472/SCHIZO.dll diff --git a/.github/workflows/create-package.yml b/.github/workflows/create-package.yml index 24cb40df..1e42b6c1 100644 --- a/.github/workflows/create-package.yml +++ b/.github/workflows/create-package.yml @@ -1,4 +1,4 @@ -name: Create and publish package +name: Create and publish package on: release: @@ -21,14 +21,14 @@ jobs: - name: Get artifact (local testing) if: ${{ env.ACT }} - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: SCHIZO-${{ matrix.configuration }} path: Install/${{ matrix.configuration }}/BepInEx/plugins/SCHIZO/ - name: Get artifact from build if: ${{ !env.ACT }} - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@v6 with: workflow: build.yml name: SCHIZO-${{ matrix.configuration }} @@ -44,14 +44,14 @@ jobs: - name: Upload the release (local testing) if: ${{ env.ACT }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Release-${{ matrix.configuration }} path: Install/SCHIZO-${{ matrix.configuration }}* - name: Update the release if: ${{ !env.ACT }} - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: | Install/SCHIZO-${{ matrix.configuration }}-with-dependencies.zip