add separate color for hint (#22) #18
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
# 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 | |