Skip to content

Commit

Permalink
Merge pull request #444 from joeyparrish/update-workflows
Browse files Browse the repository at this point in the history
ci: Update deprecated workflow
  • Loading branch information
MSchmoecker authored Jan 8, 2025
2 parents 88d94ac + 025a1fd commit d8cf1a9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ jobs:
msbuild JotunnLib.sln /p:Configuration=Release
# Upload artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Jotunn-${{ steps.gitversion.outputs.major }}.${{ steps.gitversion.outputs.minor }}.${{ steps.gitversion.outputs.patch }}-${{ steps.gitversion.outputs.commitsSinceVersionSource }}.dll
path: JotunnLib/bin/Release/net462/Jotunn.dll

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: JotunnLib.${{ steps.gitversion.outputs.major }}.${{ steps.gitversion.outputs.minor }}.${{ steps.gitversion.outputs.patch }}-${{ steps.gitversion.outputs.commitsSinceVersionSource }}.nupkg
path: JotunnLib/bin/Release/JotunnLib.${{ steps.gitversion.outputs.major }}.${{ steps.gitversion.outputs.minor }}.${{ steps.gitversion.outputs.patch }}-${{ steps.gitversion.outputs.commitsSinceVersionSource }}.nupkg
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ jobs:
msbuild JotunnLib.sln /p:Configuration=Debug
# Upload artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Jotunn-${{ steps.gitversion.outputs.major }}.${{ steps.gitversion.outputs.minor }}.${{ steps.gitversion.outputs.patch }}-${{ steps.gitversion.outputs.commitsSinceVersionSource }}.dll
path: JotunnLib/bin/Debug/net462/Jotunn.dll

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: JotunnLib.${{ steps.gitversion.outputs.major }}.${{ steps.gitversion.outputs.minor }}.${{ steps.gitversion.outputs.patch }}-${{ steps.gitversion.outputs.commitsSinceVersionSource }}.nupkg
path: JotunnLib/bin/Debug/JotunnLib.${{ steps.gitversion.outputs.major }}.${{ steps.gitversion.outputs.minor }}.${{ steps.gitversion.outputs.patch }}-${{ steps.gitversion.outputs.commitsSinceVersionSource }}.nupkg
4 changes: 2 additions & 2 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ jobs:
mv JotunnLib/bin/Debug/net462/Jotunn.dll Jotunn-DEBUG-${{ steps.get_version.outputs.VERSION }}.dll
- name: Upload Nexusmods zip as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Jotunn-${{ steps.get_version.outputs.VERSION }}-Nexusmods.zip
path: JotunnLib/_package/Nexusmods/Jotunn-${{ steps.get_version.outputs.VERSION }}.zip

- name: Upload Thunderstore zip as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Jotunn-${{ steps.get_version.outputs.VERSION }}-Thunderstore.zip
path: JotunnLib/_package/Thunderstore/Jotunn-${{ steps.get_version.outputs.VERSION }}.zip
Expand Down

0 comments on commit d8cf1a9

Please sign in to comment.