@@ -57,20 +57,20 @@ jobs:
57
57
version : ${{ github.event.inputs.force_version || steps.stable-version.outputs.version || steps.pre-version.outputs.version }}
58
58
59
59
# Check formatting
60
- # format:
61
- # runs-on: ubuntu-latest
62
- # permissions:
63
- # contents: read
60
+ # format:
61
+ # runs-on: ubuntu-latest
62
+ # permissions:
63
+ # contents: read
64
64
65
- # steps:
66
- # - name: Checkout
67
- # uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
65
+ # steps:
66
+ # - name: Checkout
67
+ # uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
68
68
69
- # - name: Install .NET
70
- # uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a # v3.0.3
69
+ # - name: Install .NET
70
+ # uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a # v3.0.3
71
71
72
- # - name: Validate format
73
- # run: dotnet format --verify-no-changes
72
+ # - name: Validate format
73
+ # run: dotnet format --verify-no-changes
74
74
75
75
# Run tests
76
76
test :
94
94
- name : Install .NET
95
95
uses : actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
96
96
with :
97
- dotnet-version : ' 8.0.x'
97
+ dotnet-version : " 8.0.x"
98
98
99
99
- name : Run restore
100
100
run : dotnet restore
@@ -131,7 +131,7 @@ jobs:
131
131
- name : Install .NET
132
132
uses : actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
133
133
with :
134
- dotnet-version : ' 8.0.x'
134
+ dotnet-version : " 8.0.x"
135
135
136
136
- name : Run restore
137
137
run : dotnet restore
@@ -164,7 +164,7 @@ jobs:
164
164
needs :
165
165
# Technically, it's not required for the format job to succeed for us to push the package,
166
166
# so we may consider removing it as a prerequisite here.
167
- # - format
167
+ # - format
168
168
- test
169
169
- pack
170
170
@@ -182,12 +182,13 @@ jobs:
182
182
- name : Install .NET
183
183
uses : actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0
184
184
with :
185
- dotnet-version : ' 8.0.x'
185
+ dotnet-version : " 8.0.x"
186
186
187
187
# Publish to GitHub package registry every time, whether it's a prerelease
188
188
# version or a stable release version.
189
189
- name : Publish packages (GitHub Registry)
190
190
if : github.event_name != 'pull_request'
191
+ continue-on-error : true
191
192
run : >
192
193
dotnet nuget push **/*.nupkg
193
194
--source https://nuget.pkg.github.com/passwordless-lib/index.json
0 commit comments