Skip to content

Commit

Permalink
add .net 5.0 and netcore3.1 targets
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Jul 26, 2022
1 parent 0c64e39 commit c514eb2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/full.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: main

env:
v: '1.2.2'
v: '1.2.3'
av: '1.0.0'

on:
Expand Down Expand Up @@ -51,3 +51,9 @@ jobs:
name: packages
- name: Push to nuget.org
run: dotnet nuget push Stowage/bin/Release/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
- name: Release
uses: softprops/action-gh-release@v1
if: github.ref == 'refs/heads/master'
with:
tag_name: ${{ env.v }}
name: ${{ env.v }}
2 changes: 1 addition & 1 deletion src/Stowage/Stowage.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<Authors>Ivan Gavryliuk (@aloneguid)</Authors>
<RepositoryType>GitHub</RepositoryType>
<NeutralLanguage />
Expand Down

0 comments on commit c514eb2

Please sign in to comment.