update: support splash such as gfie #4
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: MakeDark | |
on: | |
release: | |
types: [created] | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 8.0.x | |
- name: Setup Windows SDK | |
uses: GuillaumeFalourd/[email protected] | |
- name: Install dependencies | |
run: dotnet restore src\MakeDark.csproj | |
- name: Build | |
run: dotnet build src\MakeDark.csproj --configuration Release --no-restore |