File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -18,25 +18,27 @@ jobs:
18
18
build :
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - uses : actions/checkout@v2
21
+ - uses : actions/checkout@v4
22
22
with :
23
23
fetch-depth : 1
24
24
- run : |
25
25
git fetch --prune --unshallow --tags
26
26
echo exit code $?
27
27
git tag --list
28
- - uses : actions/setup-dotnet@v1
28
+ - uses : actions/setup-dotnet@v4
29
29
with :
30
- dotnet-version : |
31
- 9.0.x
30
+ dotnet-version : 9.0.x
31
+ source-url : https://nuget.pkg.github.com/nullean/index.json
32
+ env :
33
+ NUGET_AUTH_TOKEN : ${{secrets.GITHUB_TOKEN}}
32
34
33
35
- run : ./build.sh build -s true
34
36
name : Build
35
37
- run : ./build.sh generatepackages -s true
36
38
name : Generate local nuget packages
37
- - run : ./build.sh validatepackages -s true
39
+ # - run: ./build.sh validatepackages -s true
38
40
# name: "validate *.npkg files that were created"
39
- # - run: ./build.sh generateapichanges -s true
41
+ - run : ./build.sh generateapichanges -s true
40
42
name : " Inspect public API changes"
41
43
42
44
- name : publish to github package repository
You can’t perform that action at this time.
0 commit comments