Enhance registration logic, restructure UIFactory, and add customizable icon support #24
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 Mono | |
| run: dotnet build ./S1API.sln -c Mono -f netstandard2.1 | |
| - name: Run .NET Build for Il2Cpp | |
| run: dotnet build ./S1API.sln -c Il2Cpp -f netstandard2.1 |