Replay Browser bugfixes and improvements #352
This file contains 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 ] | |
tags: v* | |
pull_request: | |
branches: [ master ] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Acquire SIRA References | |
uses: ProjectSIRA/[email protected] | |
with: | |
manifest: ${{ github.workspace }}/Source/manifest.json | |
sira-server-code: ${{ secrets.SIRA_SERVER_CODE }} | |
- name: Download Mod Dependencies | |
uses: Goobwabber/[email protected] | |
with: | |
manifest: ${{ github.workspace }}/Source/manifest.json | |
- name: Build | |
id: Build | |
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 }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: ./${{ steps.Build.outputs.filename }}.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |