This repository was archived by the owner on Jul 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +24
-28
lines changed Expand file tree Collapse file tree 2 files changed +24
-28
lines changed Original file line number Diff line number Diff line change @@ -224,17 +224,13 @@ jobs:
224224 cd cortex-cpp
225225 make codesign CODE_SIGN=true DEVELOPER_ID="${{ secrets.DEVELOPER_ID }}"
226226
227- - uses : nick-fields/retry@v3
228- with :
229- retry_wait_seconds : 10
230- timeout_minutes : 10
231- max_attempts : 3
232- command : |
233- cd cortex-cpp
234- set PATH=%PATH%;%USERPROFILE%\.dotnet\tools
235- make codesign CODE_SIGN=true AZURE_KEY_VAULT_URI="${{ secrets.AZURE_KEY_VAULT_URI }}" AZURE_CLIENT_ID="${{ secrets.AZURE_CLIENT_ID }}" AZURE_TENANT_ID="${{ secrets.AZURE_TENANT_ID }}" AZURE_CLIENT_SECRET="${{ secrets.AZURE_CLIENT_SECRET }}" AZURE_CERT_NAME="${{ secrets.AZURE_CERT_NAME }}"
236- name : Code Signing Windows
227+ - name : Code Signing Windows
237228 if : runner.os == 'Windows'
229+ run : |
230+ cd cortex-cpp
231+ set PATH=%PATH%;%USERPROFILE%\.dotnet\tools
232+ make codesign CODE_SIGN=true AZURE_KEY_VAULT_URI="${{ secrets.AZURE_KEY_VAULT_URI }}" AZURE_CLIENT_ID="${{ secrets.AZURE_CLIENT_ID }}" AZURE_TENANT_ID="${{ secrets.AZURE_TENANT_ID }}" AZURE_CLIENT_SECRET="${{ secrets.AZURE_CLIENT_SECRET }}" AZURE_CERT_NAME="${{ secrets.AZURE_CERT_NAME }}"
233+
238234
239235 - name : Package
240236 run : |
Original file line number Diff line number Diff line change @@ -219,24 +219,24 @@ jobs:
219219 cd cortex-cpp
220220 make pre-package
221221
222- - name : Code Signing macOS
223- if : runner.os == 'macOS'
224- run : |
225- cd cortex-cpp
226- make codesign CODE_SIGN=true DEVELOPER_ID="${{ secrets.DEVELOPER_ID }}"
227-
228- - uses : nick-fields/retry@v3
229- with :
230- continue_on_error : true
231- retry_wait_seconds : 10
232- timeout_minutes : 10
233- max_attempts : 3
234- command : |
235- cd cortex-cpp
236- set PATH=%PATH%;%USERPROFILE%\.dotnet\tools
237- make codesign CODE_SIGN=true AZURE_KEY_VAULT_URI="${{ secrets.AZURE_KEY_VAULT_URI }}" AZURE_CLIENT_ID="${{ secrets.AZURE_CLIENT_ID }}" AZURE_TENANT_ID="${{ secrets.AZURE_TENANT_ID }}" AZURE_CLIENT_SECRET="${{ secrets.AZURE_CLIENT_SECRET }}" AZURE_CERT_NAME="${{ secrets.AZURE_CERT_NAME }}"
238- name : Code Signing Windows
239- if : runner.os == 'Windows'
222+ # - name: Code Signing macOS
223+ # if: runner.os == 'macOS'
224+ # run: |
225+ # cd cortex-cpp
226+ # make codesign CODE_SIGN=true DEVELOPER_ID="${{ secrets.DEVELOPER_ID }}"
227+
228+ # - uses: nick-fields/retry@v3
229+ # with:
230+ # continue_on_error: true
231+ # retry_wait_seconds: 10
232+ # timeout_minutes: 10
233+ # max_attempts: 3
234+ # command: |
235+ # cd cortex-cpp
236+ # set PATH=%PATH%;%USERPROFILE%\.dotnet\tools
237+ # make codesign CODE_SIGN=true AZURE_KEY_VAULT_URI="${{ secrets.AZURE_KEY_VAULT_URI }}" AZURE_CLIENT_ID="${{ secrets.AZURE_CLIENT_ID }}" AZURE_TENANT_ID="${{ secrets.AZURE_TENANT_ID }}" AZURE_CLIENT_SECRET="${{ secrets.AZURE_CLIENT_SECRET }}" AZURE_CERT_NAME="${{ secrets.AZURE_CERT_NAME }}"
238+ # name: Code Signing Windows
239+ # if: runner.os == 'Windows'
240240
241241 - name : Package
242242 run : |
You can’t perform that action at this time.
0 commit comments