Skip to content

Merge pull request #58 from nicoco007/fpfc-improvements-and-fixes #147

Merge pull request #58 from nicoco007/fpfc-improvements-and-fixes

Merge pull request #58 from nicoco007/fpfc-improvements-and-fixes #147

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
paths:
- 'SiraUtil/**'
- 'SiraUtil.sln'
- '.github/workflows/main.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Acquire SIRA References
uses: ProjectSIRA/download-sira-stripped@1.0.0
with:
manifest: ./SiraUtil/manifest.json
sira-server-code: ${{ secrets.SIRA_SERVER_CODE }}
- name: Acquire Mod References
uses: Goobwabber/download-beatmods-deps@1.2
with:
manifest: ./SiraUtil/manifest.json
- name: Build
id: Build
env:
FrameworkPathOverride: /usr/lib/mono/4.8-api
run: dotnet build SiraUtil/SiraUtil.csproj --configuration Release
- name: Git Status
run: git status
- name: Echo File Name
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: SiraUtil
path: ${{ steps.Build.outputs.artifactpath }}