File tree Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 76
76
dotnet pack --configuration Release --no-build --no-restore --output artifacts/packages -p:PackageVersion=$PRODUCTION_VERSION
77
77
78
78
- name : Upload package artifacts
79
- uses : actions/upload-artifact@v2
79
+ uses : actions/upload-artifact@v4
80
80
with :
81
81
name : ${{inputs.REPOSITORY_NAME}}-packages
82
82
path : artifacts/packages/
Original file line number Diff line number Diff line change 20
20
args : docs/docfx.json
21
21
22
22
- name : Upload documentation results
23
- uses : actions/upload-artifact@v2
23
+ uses : actions/upload-artifact@v4
24
24
with :
25
25
name : ${{inputs.REPOSITORY_NAME}}-documentation
26
26
path : docs/_site
Original file line number Diff line number Diff line change 40
40
run : dotnet test --no-build --filter FullyQualifiedName~Integration --collect:"XPlat Code Coverage"
41
41
42
42
- name : Upload test results
43
- uses : actions/upload-artifact@v2
43
+ uses : actions/upload-artifact@v4
44
44
with :
45
45
name : ${{inputs.REPOSITORY_NAME}}-test-results
46
46
path : src/Tests/**/TestResults/**/coverage.cobertura.xml
Original file line number Diff line number Diff line change 18
18
runs-on : ubuntu-latest
19
19
steps :
20
20
- name : Download coverage results
21
- uses : actions/download-artifact@v2
21
+ uses : actions/download-artifact@v4
22
22
with :
23
23
name : ${{inputs.REPOSITORY_NAME}}-coverage-results
24
24
path : artifacts/coverage-results
Original file line number Diff line number Diff line change 49
49
uses : NuGet/setup-nuget@v1
50
50
51
51
- name : Download package artifacts
52
- uses : actions/download-artifact@v2
52
+ uses : actions/download-artifact@v4
53
53
with :
54
54
name : ${{inputs.REPOSITORY_NAME}}-packages
55
55
path : artifacts/packages/
Original file line number Diff line number Diff line change 15
15
uses : actions/checkout@v2
16
16
17
17
- name : Download test results
18
- uses : actions/download-artifact@v2
18
+ uses : actions/download-artifact@v4
19
19
with :
20
20
name : ${{inputs.REPOSITORY_NAME}}-test-results
21
21
path : artifacts/test-results
28
28
reporttypes : Html
29
29
30
30
- name : Upload test results
31
- uses : actions/upload-artifact@v2
31
+ uses : actions/upload-artifact@v4
32
32
with :
33
33
name : ${{inputs.REPOSITORY_NAME}}-coverage-results
34
34
path : Coverage/
Original file line number Diff line number Diff line change 40
40
run : dotnet test --no-build --filter FullyQualifiedName!~Integration --collect:"XPlat Code Coverage"
41
41
42
42
- name : Upload test results
43
- uses : actions/upload-artifact@v2
43
+ uses : actions/upload-artifact@v4
44
44
with :
45
45
name : ${{inputs.REPOSITORY_NAME}}-test-results
46
46
path : src/Tests/**/TestResults/**/coverage.cobertura.xml
You can’t perform that action at this time.
0 commit comments