-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from Yeah69/release/v1.0.0
Release/v1.0.0
- Loading branch information
Showing
365 changed files
with
21,800 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Custom for Visual Studio | ||
*.cs diff=csharp |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: OnVersionTag | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
jobs: | ||
windows: | ||
|
||
strategy: | ||
matrix: | ||
configuration: [ Release ] | ||
runs-on: windows-latest | ||
|
||
env: | ||
Solution_Name: MrMeeseeks.DIE.sln # Replace with your solution name, i.e. MyWpfApp.sln. | ||
|
||
steps: | ||
- uses: actions/checkout@main | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v2.1.0 | ||
with: | ||
dotnet-version: 6.0.401 | ||
- run: set DOTNET_CLI_TELEMETRY_OPTOUT=1 | ||
- name: Install dependencies | ||
run: dotnet restore .\MrMeeseeks.DIE.sln | ||
- name: Build | ||
run: dotnet build .\MrMeeseeks.DIE.sln --configuration Release --no-restore | ||
- name: Test | ||
run: dotnet test .\Test\Test.csproj --no-restore --verbosity normal | ||
- name: Publish to NuGet | ||
uses: brandedoutcast/publish-nuget@master | ||
with: | ||
PROJECT_FILE_PATH: Main/Main.csproj | ||
VERSION_FILE_PATH: Directory.Build.props | ||
TAG_COMMIT: false | ||
NUGET_KEY: ${{secrets.NUGET_API_KEY}} |
Oops, something went wrong.