1.9.14 update #52
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 Fisobs | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build .NET assemblies | |
runs-on: ubuntu-latest | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '7.0.x' | |
- name: Build solution | |
run: dotnet publish Fisobs.sln -c Release -o output | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: | | |
output/Fisobs.dll | |
output/Fisobs.xml | |
output/CentiShields.dll | |
output/Mosquitoes.dll |