fix: allow unlimited impostors (NoOptionsLimits) #154
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [ "push", "pull_request" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 6.x | |
| - name: Run the Cake script | |
| uses: cake-build/cake-action@v1 | |
| with: | |
| verbosity: Diagnostic | |
| - name: Upload AUnlocker.dll artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: AUnlocker.dll | |
| path: /home/runner/work/AUnlocker/AUnlocker/src/bin/Release/net6.0/AUnlocker.dll | |
| - name: Download and extract BepInEx | |
| run: | | |
| wget -O BepInEx_x64.zip https://builds.bepinex.dev/projects/bepinex_be/735/BepInEx-Unity.IL2CPP-win-x64-6.0.0-be.735%2B5fef357.zip | |
| unzip BepInEx_x64.zip -d BepInEx_x64 | |
| wget -O BepInEx_x86.zip https://builds.bepinex.dev/projects/bepinex_be/735/BepInEx-Unity.IL2CPP-win-x86-6.0.0-be.735%2B5fef357.zip | |
| unzip BepInEx_x86.zip -d BepInEx_x86 | |
| - name: Copy AUnlocker.dll to BepInEx/plugins | |
| run: | | |
| chmod -R 755 BepInEx_x86 | |
| chmod -R 755 BepInEx_x64 | |
| cp /home/runner/work/AUnlocker/AUnlocker/src/bin/Release/net6.0/AUnlocker.dll BepInEx_x86/BepInEx/plugins/ | |
| cp /home/runner/work/AUnlocker/AUnlocker/src/bin/Release/net6.0/AUnlocker.dll BepInEx_x64/BepInEx/plugins/ | |
| - name: Upload AUnlocker_Steam_Itch.zip artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: AUnlocker_Steam_Itch | |
| path: BepInEx_x86 | |
| - name: Upload AUnlocker_EpicGames_MicrosoftStore_XboxApp.zip artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: AUnlocker_EpicGames_MicrosoftStore_XboxApp | |
| path: BepInEx_x64 |