Merge pull request #182 from ModdingPink/master #21
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: Build | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths: | |
| - 'MultiplayerExtensions.sln' | |
| - 'MultiplayerExtensions/**' | |
| - '.github/workflows/Build.yml' | |
| jobs: | |
| Build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 5.0.x | |
| - name: Fetch SIRA References | |
| uses: ProjectSIRA/download-sira-stripped@1.0.0 | |
| with: | |
| manifest: ./MultiplayerExtensions/manifest.json | |
| sira-server-code: ${{ secrets.SIRA_SERVER_CODE }} | |
| - name: Fetch Mod References | |
| uses: Goobwabber/download-beatmods-deps@1.1 | |
| with: | |
| manifest: ./MultiplayerExtensions/manifest.json | |
| - name: Build | |
| id: Build | |
| env: | |
| FrameworkPathOverride: /usr/lib/mono/4.8-api | |
| run: dotnet build --configuration Release | |
| - name: GitStatus | |
| run: git status | |
| - name: Echo Filename | |
| run: echo $BUILDTEXT \($ASSEMBLYNAME\) | |
| env: | |
| BUILDTEXT: Filename=${{ steps.Build.outputs.filename }} | |
| ASSEMBLYNAME: AssemblyName=${{ steps.Build.outputs.assemblyname }} | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v1 | |
| with: | |
| name: ${{ steps.Build.outputs.filename }} | |
| path: ${{ steps.Build.outputs.artifactpath }} |