File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ jobs:
147
147
uses : actions/setup-dotnet@v4
148
148
with :
149
149
dotnet-version : |
150
- 8 .0.x
150
+ 10 .0.x
151
151
152
152
- name : Install node
153
153
if : ${{ steps.prerequisite.outputs.need_node == '1' }}
@@ -164,26 +164,20 @@ jobs:
164
164
- name : Download Package artifact
165
165
uses : actions/download-artifact@v4
166
166
167
- - name : Install sign tool
168
- env :
169
- AZURE_CLIENT_SECRET : ${{ secrets.AZURE_SIGNER_CLIENT_SECRET }}
170
- run : dotnet tool install sign --tool-path . --version 0.9.1-beta.25157.1
171
- if : ${{ env.AZURE_CLIENT_SECRET != '' && github.ref == 'refs/heads/master' }}
172
-
173
167
- name : Sign
174
168
env :
175
169
AZURE_TENANT_ID : ${{ secrets.AZURE_TENANT_ID }}
176
170
AZURE_CLIENT_SECRET : ${{ secrets.AZURE_SIGNER_CLIENT_SECRET }}
177
171
AZURE_CLIENT_ID : ${{ secrets.AZURE_SIGNER_CLIENT_ID }}
178
172
if : ${{ env.AZURE_CLIENT_SECRET != '' && github.ref == 'refs/heads/master' }}
179
173
run : |
180
- ./ sign code trusted-signing \
174
+ dnx --prerelease sign code trusted-signing \
181
175
--base-directory "${{ github.workspace }}/packages" \
182
176
"*.nupkg" \
183
177
--trusted-signing-endpoint "${{ secrets.TRUSTED_SIGNING_ENDPOINT }}" \
184
178
--trusted-signing-account "${{ secrets.TRUSTED_SIGNING_ACCOUNT }}" \
185
179
--trusted-signing-certificate-profile "${{ secrets.TRUSTED_SIGNING_CERTIFICATE_PROFILE }}" \
186
- -v trace
180
+ -v normal
187
181
188
182
- name : Upload artifacts (.nupkg)
189
183
uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments