File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 38
38
run : dotnet pack ${{ env.PROJECT_PATH }} -c Release --no-build --include-symbols -o ./artifacts/prerelease --version-suffix prerelease-$GITHUB_RUN_NUMBER-$GITHUB_RUN_ATTEMPT
39
39
40
40
- name : ' Save prerelease artifact'
41
- uses : actions/upload-artifact@v3
41
+ uses : actions/upload-artifact@v4
42
42
with :
43
43
name : prerelease
44
44
path : ./artifacts/prerelease/*
47
47
run : dotnet pack ${{ env.PROJECT_PATH }} -c Release --no-build --include-symbols -o ./artifacts/release
48
48
49
49
- name : ' Save release artifact'
50
- uses : actions/upload-artifact@v3
50
+ uses : actions/upload-artifact@v4
51
51
with :
52
52
name : release
53
53
path : ./artifacts/release/*
59
59
runs-on : ubuntu-latest
60
60
steps :
61
61
- name : Download artifact
62
- uses : actions/download-artifact@v3
62
+ uses : actions/download-artifact@v4
63
63
with :
64
64
name : prerelease
65
65
73
73
runs-on : ubuntu-latest
74
74
steps :
75
75
- name : Download artifact
76
- uses : actions/download-artifact@v3
76
+ uses : actions/download-artifact@v4
77
77
with :
78
78
name : release
79
79
You can’t perform that action at this time.
0 commit comments