Skip to content

Commit f5faec0

Browse files
committed
build: update to GitHub Action upload-artifact@v4
otherwise build is broken
1 parent d854d08 commit f5faec0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
dotnet pack -c Release
3030
3131
- name: Upload artifact
32-
uses: actions/upload-artifact@v1
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: ${{ github.event.repository.name }}.nupkg
3535
path: src/${{ github.event.repository.name }}/bin/Release/${{ github.event.repository.name }}.0.0.0.nupkg

.github/workflows/release_plugin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- 'v\d.\d.\d'
99

1010
jobs:
11-
build:
11+
release-plugin:
1212

1313
runs-on: [windows-latest]
1414

@@ -40,7 +40,7 @@ jobs:
4040
dotnet pack -c Release
4141
4242
- name: Upload artifact
43-
uses: actions/upload-artifact@v1
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: ${{ github.event.repository.name }}.nupkg
4646
path: src/${{ github.event.repository.name }}/bin/Release/${{ github.event.repository.name }}.${{ steps.extract_version.outputs.version }}.nupkg

0 commit comments

Comments
 (0)