Skip to content

Update publish.yml #461

Update publish.yml

Update publish.yml #461

Workflow file for this run

name: Build Check
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
include-prerelease: true
- name: Reset Tags
run: git fetch --tags
- name: Clean 1
run: dotnet clean WFBot.sln --configuration "Windows Release" && dotnet nuget locals all --clear
- name: Clean 2
run: dotnet clean WFBot.sln --configuration "Linux Release" && dotnet nuget locals all --clear
- name: Restore dependencies
run: dotnet restore
- name: Linux Build
run: dotnet publish WFBot -c "Linux Release" -o LinuxPublish --self-contained false