Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
flibber-hk authored and fifty-six committed Feb 21, 2023
1 parent 95c9f3a commit 04faae2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ jobs:
build-win:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

This comment has been minimized.

Copy link
@vegetop

vegetop Jan 3, 2024

update

- name: Setup Vanilla
run: |
wget https://files.catbox.moe/i4sdl6.zip -O Vanilla.zip
unzip Vanilla.zip -d Vanilla
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
- name: Setup ms-build
run: sudo apt-get install -y nuget mono-devel mono-xbuild
- name: Restore dependencies
Expand All @@ -24,21 +24,21 @@ jobs:
run: |
dotnet build Assembly-CSharp -p:SolutionDir=$PWD -p:Configuration=Release
- name: Upload Windows Binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ModdingApiWin
path: ./OutputFinal/

build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Vanilla
run: |
wget https://files.catbox.moe/j85bvb.zip -O Vanilla.zip
unzip Vanilla.zip -d Vanilla
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
- name: Setup ms-build
run: sudo apt-get install -y nuget mono-devel mono-xbuild
- name: Restore dependencies
Expand All @@ -50,21 +50,21 @@ jobs:
run: |
dotnet build Assembly-CSharp -p:SolutionDir=$PWD -p:Configuration=Release
- name: Upload Linux Binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ModdingApiLinux
path: ./OutputFinal/

build-mac:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Vanilla
run: |
wget https://files.catbox.moe/j8fyro.zip -O Vanilla.zip
unzip Vanilla.zip -d Vanilla
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
- name: Setup ms-build
run: sudo apt-get install -y nuget mono-devel mono-xbuild
- name: Restore dependencies
Expand All @@ -76,7 +76,7 @@ jobs:
run: |
dotnet build Assembly-CSharp -p:SolutionDir=$PWD -p:Configuration=Release
- name: Upload Mac Binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ModdingApiMac
path: ./OutputFinal/
Expand All @@ -87,7 +87,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags')
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: ./artifacts
- name: Zip
Expand Down

0 comments on commit 04faae2

Please sign in to comment.