Skip to content

Commit

Permalink
Fix for release action.
Browse files Browse the repository at this point in the history
  • Loading branch information
twitchax committed Apr 18, 2021
1 parent d2857a0 commit 274bd4c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ jobs:
steps:
- name: Checkout!
uses: actions/checkout@v1
- name: Setup .NET Environment.
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.101'
dotnet-version: '3.1'
- name: Setup .NET 5
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0'
- name: Build package for Release.
run: dotnet pack -c Release
if: github.event.action == 'published'
Expand Down

0 comments on commit 274bd4c

Please sign in to comment.