Merge pull request #807 from trheyi/main
Fix code signing command and update .gitignore to exclude shell scripts
This commit is contained in:
commit
403d5ad0ba
2 changed files with 3 additions and 2 deletions
2
.github/workflows/build-macos.yml
vendored
2
.github/workflows/build-macos.yml
vendored
|
|
@ -149,7 +149,7 @@ jobs:
|
||||||
|
|
||||||
- name: Sign Artifacts
|
- name: Sign Artifacts
|
||||||
run: |
|
run: |
|
||||||
codesign --deep --force --verbose --timestamp --options runtime --sign "Developer ID Application: ${{ secrets.APPLE_SIGN }}" dist/release/yao-$VERSION-unstable-darwin-arm64
|
codesign --deep --force --verbose --timestamp --sign "Developer ID Application: ${{ secrets.APPLE_SIGN }}" dist/release/yao-$VERSION-unstable-darwin-arm64
|
||||||
codesign --deep --force --verbose --timestamp --options runtime --sign "Developer ID Application: ${{ secrets.APPLE_SIGN }}" dist/release/yao-$VERSION-unstable-darwin-amd64
|
codesign --deep --force --verbose --timestamp --options runtime --sign "Developer ID Application: ${{ secrets.APPLE_SIGN }}" dist/release/yao-$VERSION-unstable-darwin-amd64
|
||||||
|
|
||||||
- name: Verify Signature
|
- name: Verify Signature
|
||||||
|
|
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -41,3 +41,4 @@ xgen/v1.0/*
|
||||||
*-unit-test
|
*-unit-test
|
||||||
docker/build/test
|
docker/build/test
|
||||||
db
|
db
|
||||||
|
*.sh
|
||||||
Loading…
Add table
Reference in a new issue