Skip to content

Commit

Permalink
Merge pull request #16 from Yeah69/release/v1.0.0
Browse files Browse the repository at this point in the history
Release/v1.0.0
  • Loading branch information
Yeah69 authored Oct 3, 2022
2 parents 93bb97a + 949b850 commit 05e6697
Show file tree
Hide file tree
Showing 365 changed files with 21,800 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
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
37 changes: 37 additions & 0 deletions .github/workflows/main.yml
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}}
Loading

0 comments on commit 05e6697

Please sign in to comment.