Skip to content

Commit

Permalink
Updating GH workflow to use dotnet 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseward committed Jun 2, 2023
1 parent a45cc1c commit 76ae0a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:

- uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x' # SDK Version to use; x will use the latest version of the 5.0 channel
dotnet-version: '6.0.x'

- name: Build release via dotnet build...
run: dotnet build Jellyfin.Plugin.Lastfm

- name: Create ZIP archive of plugin release.
run: zip "lastfm_${GIT_TAG_NAME}.zip" /home/runner/work/jellyfin-plugin-lastfm/jellyfin-plugin-lastfm/Jellyfin.Plugin.Lastfm/bin/Debug/net5.0/Jellyfin.Plugin.Lastfm.dll
run: zip "lastfm_${GIT_TAG_NAME}.zip" /home/runner/work/jellyfin-plugin-lastfm/jellyfin-plugin-lastfm/Jellyfin.Plugin.Lastfm/bin/Debug/net6.0/Jellyfin.Plugin.Lastfm.dll

- uses: actions/setup-python@v2
with:
Expand Down

0 comments on commit 76ae0a1

Please sign in to comment.