@@ -19,30 +19,31 @@ jobs:
19
19
runs-on : ${{ matrix.os }}
20
20
21
21
steps :
22
- - name : Checkout
23
- uses : actions/checkout@v4
24
- with :
25
- fetch-depth : 0
26
- submodules : recursive
27
-
28
- - name : Setup .NET SDK
29
- uses : actions/setup-dotnet@v4
30
- env :
31
- NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32
- with :
33
- dotnet-version : |
34
- 6.0.x
35
- 7.0.x
36
- source-url : https://nuget.pkg.github.com/open-feature/index.json
37
-
38
- - name : Restore
39
- run : dotnet restore
40
-
41
- - name : Build
42
- run : dotnet build --no-restore
43
-
44
- - name : Test
45
- run : dotnet test --no-build --logger GitHubActions
22
+ - name : Checkout
23
+ uses : actions/checkout@v4
24
+ with :
25
+ fetch-depth : 0
26
+ submodules : recursive
27
+
28
+ - name : Setup .NET SDK
29
+ uses : actions/setup-dotnet@v4
30
+ env :
31
+ NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32
+ with :
33
+ dotnet-version : |
34
+ 6.0.x
35
+ 7.0.x
36
+ 8.0.x
37
+ source-url : https://nuget.pkg.github.com/open-feature/index.json
38
+
39
+ - name : Restore
40
+ run : dotnet restore
41
+
42
+ - name : Build
43
+ run : dotnet build --no-restore
44
+
45
+ - name : Test
46
+ run : dotnet test --no-build --logger GitHubActions
46
47
47
48
packaging :
48
49
needs : build
@@ -54,40 +55,41 @@ jobs:
54
55
runs-on : ubuntu-latest
55
56
56
57
steps :
57
- - name : Checkout
58
- uses : actions/checkout@v4
59
- with :
60
- fetch-depth : 0
61
- submodules : recursive
62
-
63
- - name : Setup .NET SDK
64
- uses : actions/setup-dotnet@v4
65
- env :
66
- NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
67
- with :
68
- dotnet-version : |
69
- 6.0.x
70
- 7.0.x
71
- source-url : https://nuget.pkg.github.com/open-feature/index.json
72
-
73
- - name : Restore
74
- run : dotnet restore
75
-
76
- - name : Pack NuGet packages (CI versions)
77
- if : startsWith(github.ref, 'refs/heads/')
78
- run : dotnet pack --no-restore --version-suffix "ci.$(date -u +%Y%m%dT%H%M%S)+sha.${GITHUB_SHA:0:9}"
79
-
80
- - name : Pack NuGet packages (PR versions)
81
- if : startsWith(github.ref, 'refs/pull/')
82
- run : dotnet pack --no-restore --version-suffix "pr.$(date -u +%Y%m%dT%H%M%S)+sha.${GITHUB_SHA:0:9}"
83
-
84
- - name : Publish NuGet packages (base)
85
- if : github.event.pull_request.head.repo.fork == false
86
- run : dotnet nuget push "src/**/*.nupkg" --api-key "${{ secrets.GITHUB_TOKEN }}" --source https://nuget.pkg.github.com/open-feature/index.json
87
-
88
- - name : Publish NuGet packages (fork)
89
- if : github.event.pull_request.head.repo.fork == true
90
-
91
- with :
92
- name : nupkgs
93
- path : src/**/*.nupkg
58
+ - name : Checkout
59
+ uses : actions/checkout@v4
60
+ with :
61
+ fetch-depth : 0
62
+ submodules : recursive
63
+
64
+ - name : Setup .NET SDK
65
+ uses : actions/setup-dotnet@v4
66
+ env :
67
+ NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
68
+ with :
69
+ dotnet-version : |
70
+ 6.0.x
71
+ 7.0.x
72
+ 8.0.x
73
+ source-url : https://nuget.pkg.github.com/open-feature/index.json
74
+
75
+ - name : Restore
76
+ run : dotnet restore
77
+
78
+ - name : Pack NuGet packages (CI versions)
79
+ if : startsWith(github.ref, 'refs/heads/')
80
+ run : dotnet pack --no-restore --version-suffix "ci.$(date -u +%Y%m%dT%H%M%S)+sha.${GITHUB_SHA:0:9}"
81
+
82
+ - name : Pack NuGet packages (PR versions)
83
+ if : startsWith(github.ref, 'refs/pull/')
84
+ run : dotnet pack --no-restore --version-suffix "pr.$(date -u +%Y%m%dT%H%M%S)+sha.${GITHUB_SHA:0:9}"
85
+
86
+ - name : Publish NuGet packages (base)
87
+ if : github.event.pull_request.head.repo.fork == false
88
+ run : dotnet nuget push "src/**/*.nupkg" --api-key "${{ secrets.GITHUB_TOKEN }}" --source https://nuget.pkg.github.com/open-feature/index.json
89
+
90
+ - name : Publish NuGet packages (fork)
91
+ if : github.event.pull_request.head.repo.fork == true
92
+
93
+ with :
94
+ name : nupkgs
95
+ path : src/**/*.nupkg
0 commit comments