Phone app register #64
Workflow file for this run
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: Verify Successful Build | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| branches: | |
| - bleeding-edge | |
| jobs: | |
| build: | |
| name: Verify Successful Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: Clone Game Assemblies | |
| run: | | |
| git clone https://x-access-token:${{ secrets.GH_PAT }}@github.com/KaBooMa/ScheduleOneAssemblies.git ./ScheduleOneAssemblies | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| - name: Restore .NET Dependencies | |
| run: dotnet restore | |
| - name: Run .NET build for MonoBepInEx | |
| run: dotnet build ./S1API.sln -c MonoBepInEx -f netstandard2.1 | |
| - name: Run .NET build for Il2CppBepInEx | |
| run: dotnet build ./S1API.sln -c Il2CppBepInEx -f net6.0 | |
| - name: Run .NET build for MonoMelon | |
| run: dotnet build ./S1API.sln -c MonoMelon -f netstandard2.1 | |
| - name: Run .NET build for Il2CppMelon | |
| run: dotnet build ./S1API.sln -c Il2CppMelon -f net6.0 |