Skip to content

Commit

Permalink
update:workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yukieiji committed Dec 25, 2023
1 parent a3435e0 commit 9e987b3
Showing 1 changed file with 39 additions and 27 deletions.
66 changes: 39 additions & 27 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,68 +32,80 @@ jobs:
- run: ./build.ps1

# Upload artifacts

# BepInEx IL2CPP
- uses: actions/upload-artifact@v2
- name: Upload BepInEx.IL2CPP
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.BepInEx.IL2CPP.zip
path: ./Release/UnityExplorer.BepInEx.IL2CPP/

# BepInEx IL2CPP CoreCLR
- uses: actions/upload-artifact@v2
- name: Upload BepInEx.IL2CPP.CoreCLR
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.BepInEx.IL2CPP.CoreCLR.zip
path: ./Release/UnityExplorer.BepInEx.IL2CPP.CoreCLR/
# BepInEx Unity IL2CPP CoreCLR
- uses: actions/upload-artifact@v2

- name: Upload BepInEx.Unity.IL2CPP.CoreCLR
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.BepInEx.Unity.IL2CPP.CoreCLR.zip
path: ./Release/UnityExplorer.BepInEx.Unity.IL2CPP.CoreCLR/
# BepInEx 5 Mono
- uses: actions/upload-artifact@v2

- name: Upload BepInEx5.Mono
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.BepInEx5.Mono.zip
path: ./Release/UnityExplorer.BepInEx5.Mono/

# BepInEx 6 Mono
- uses: actions/upload-artifact@v2
- name: Upload BepInEx6.Mono
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.BepInEx6.Mono.zip
path: ./Release/UnityExplorer.BepInEx6.Mono/

# Editor
- uses: actions/upload-artifact@v2
- name: Upload BepInEx6.Unity.Mono
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.Editor.zip
path: ./UnityEditorPackage/
name: UnityExplorer.BepInEx6.Unity.Mono.zip
path: ./Release/UnityExplorer.BepInEx6.Unity.Mono/

- name: Upload MelonLoader.IL2CPP
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.MelonLoader.IL2CPP.zip
path: ./Release/UnityExplorer.MelonLoader.IL2CPP/

# MelonLoader IL2CPP net6preview
- uses: actions/upload-artifact@v2
- name: Upload MelonLoader.IL2CPP.net6preview
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.MelonLoader.IL2CPP.net6preview.zip
path: ./Release/UnityExplorer.MelonLoader.IL2CPP.net6preview/

# MelonLoader IL2CPP net472
- uses: actions/upload-artifact@v2
- name: Upload MelonLoader.IL2CPP.CoreCLR
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.MelonLoader.IL2CPP.zip
path: ./Release/UnityExplorer.MelonLoader.IL2CPP/
name: UnityExplorer.MelonLoader.IL2CPP.CoreCLR.zip
path: ./Release/UnityExplorer.MelonLoader.IL2CPP.CoreCLR/

# MelonLoader Mono
- uses: actions/upload-artifact@v2
- name: Upload MelonLoader.Mono
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.MelonLoader.Mono.zip
path: ./Release/UnityExplorer.MelonLoader.Mono/

# Standalone Il2Cpp
- uses: actions/upload-artifact@v2
- name: Upload Standalone.IL2CPP
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.Standalone.IL2CPP.zip
path: ./Release/UnityExplorer.Standalone.IL2CPP/

# Standalone Mono
- uses: actions/upload-artifact@v2
- name: Upload Standalone.Mono
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.Standalone.Mono.zip
path: ./Release/UnityExplorer.Standalone.Mono/

- name: Upload Editor
uses: actions/upload-artifact@v2
with:
name: UnityExplorer.Editor.zip
path: ./UnityEditorPackage/

0 comments on commit 9e987b3

Please sign in to comment.