We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79989f5 commit 5864262Copy full SHA for 5864262
.github/assets/codesign.p12
2.61 KB
.github/workflows/release.yml
@@ -25,7 +25,13 @@ jobs:
25
- name: Build tldr-sharp
26
run: |
27
dotnet publish -c Release --self-contained false -o 'publish/${{ matrix.runtime }}' -r '${{ matrix.runtime }}'
28
-
+ - name: Sign macOS build
29
+ if: ${{ startsWith(matrix.runtime, 'osx') }}
30
+ uses: indygreg/apple-code-sign-action@v1
31
+ with:
32
+ input_path: publish/${{ matrix.runtime }}/tldr-sharp
33
+ p12_file: .github/assets/codesign.p12
34
+ p12_password: ${{ secrets.codesign_password }}
35
- name: Cache Build
36
uses: actions/cache/save@v3
37
with:
0 commit comments