Skip to content

improve default settings for Colors (#13) #21

improve default settings for Colors (#13)

improve default settings for Colors (#13) #21

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET Pre-Release
on:
push:
branches: [ "main" ]
jobs:
build:
permissions:
contents: write
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore StylableWinFormsControls/StylableWinFormsControls.sln
- name: Build
run: dotnet build StylableWinFormsControls/StylableWinFormsControls.sln --no-restore
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
LICENSE
StylableWinFormsControls/StylableWinFormsControls/bin/Debug/net6.0-windows/StylableWinFormsControls.dll
StylableWinFormsControls/StylableWinFormsControls/bin/Debug/*.nupkg
StylableWinFormsControls/StylableWinFormsControls/bin/Debug/*.snupkg