File tree Expand file tree Collapse file tree 3 files changed +7
-28
lines changed Expand file tree Collapse file tree 3 files changed +7
-28
lines changed Original file line number Diff line number Diff line change @@ -46,23 +46,14 @@ jobs:
46
46
fetch-depth : 0
47
47
48
48
- name : 🙏 build
49
- run : dotnet build -m:1 -bl:build.binlog - p:VersionLabel="$GITHUB_REF.$GITHUB_RUN_NUMBER" -p:RepositoryBranch=${GITHUB_REF#refs/*/}
49
+ run : dotnet build -m:1 -p:VersionLabel="$GITHUB_REF.$GITHUB_RUN_NUMBER" -p:RepositoryBranch=${GITHUB_REF#refs/*/}
50
50
51
51
- name : 🧪 test
52
- run : dotnet test --no-build -m:1 --blame-hang --blame-hang-timeout 5m -d $GITHUB_WORKSPACE/logs/${{ matrix.os }}.txt -r $GITHUB_WORKSPACE/logs
52
+ run : dotnet test --no-build -m:1 --blame-hang --blame-hang-timeout 5m
53
53
54
54
- name : 📦 pack
55
- run : dotnet pack -m:1 -bl:pack.binlog - p:VersionLabel="$GITHUB_REF.$GITHUB_RUN_NUMBER" -p:RepositoryBranch=${GITHUB_REF#refs/*/}
55
+ run : dotnet pack -m:1 -p:VersionLabel="$GITHUB_REF.$GITHUB_RUN_NUMBER" -p:RepositoryBranch=${GITHUB_REF#refs/*/}
56
56
57
- - name : 🔼 logs
58
- if : always()
59
- uses : actions/upload-artifact@v2
60
- with :
61
- name : ${{ matrix.os }}
62
- path : |
63
- **/*.binlog
64
- logs/**/*.*
65
-
66
57
# Only push CI package to sleet feed if building on ubuntu (fastest)
67
58
- name : 🚀 sleet
68
59
env :
Original file line number Diff line number Diff line change @@ -22,19 +22,13 @@ jobs:
22
22
fetch-depth : 0
23
23
24
24
- name : 🙏 build
25
- run : dotnet build -m:1 -bl:build.binlog - p:version=${GITHUB_REF#refs/*/v} -p:RepositoryBranch=${GITHUB_REF#refs/*/}
25
+ run : dotnet build -m:1 -p:version=${GITHUB_REF#refs/*/v} -p:RepositoryBranch=${GITHUB_REF#refs/*/}
26
26
27
27
- name : 🧪 test
28
28
run : dotnet test --no-build -m:1
29
29
30
30
- name : 📦 pack
31
- run : dotnet pack -m:1 -bl:pack.binlog -p:version=${GITHUB_REF#refs/*/v} -p:RepositoryBranch=${GITHUB_REF#refs/*/}
32
-
33
- - name : 🔼 logs
34
- if : ${{ always() }}
35
- uses : actions/upload-artifact@v2
36
- with :
37
- path : ' **/*.binlog'
31
+ run : dotnet pack -m:1 -p:version=${GITHUB_REF#refs/*/v} -p:RepositoryBranch=${GITHUB_REF#refs/*/}
38
32
39
33
- name : 🚀 nuget
40
34
run : dotnet nuget push ./bin/**/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
Original file line number Diff line number Diff line change @@ -20,19 +20,13 @@ jobs:
20
20
run : echo "CURRENT_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
21
21
22
22
- name : 🙏 build
23
- run : dotnet build -m:1 -bl:build.binlog - p:version=${GITHUB_REF#refs/*/v} -p:RepositoryBranch=${GITHUB_REF#refs/*/}
23
+ run : dotnet build -m:1 -p:version=${GITHUB_REF#refs/*/v} -p:RepositoryBranch=${GITHUB_REF#refs/*/}
24
24
25
25
- name : 🧪 test
26
26
run : dotnet test --no-build -m:1
27
27
28
28
- name : 📦 pack
29
- run : dotnet pack -m:1 -bl:pack.binlog -p:version=${GITHUB_REF#refs/*/v} -p:RepositoryBranch=${GITHUB_REF#refs/*/}
30
-
31
- - name : 🔼 logs
32
- if : ${{ always() }}
33
- uses : actions/upload-artifact@v2
34
- with :
35
- path : ' **/*.binlog'
29
+ run : dotnet pack -m:1 -p:version=${GITHUB_REF#refs/*/v} -p:RepositoryBranch=${GITHUB_REF#refs/*/}
36
30
37
31
- name : 🔽 gh
38
32
run : |
You can’t perform that action at this time.
0 commit comments