Skip to content

Commit

Permalink
surely if i just make the number higher the green checkmark will stay…
Browse files Browse the repository at this point in the history
… and the orange triangle will somehow magically disappear
  • Loading branch information
Govorunb committed Jul 5, 2024
1 parent 1560520 commit b32d5ce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build

on:
push:
Expand Down Expand Up @@ -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
10 changes: 5 additions & 5 deletions .github/workflows/create-package.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create and publish package
name: Create and publish package

on:
release:
Expand All @@ -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 }}
Expand All @@ -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
Expand Down

0 comments on commit b32d5ce

Please sign in to comment.