Fix code signing command and update .gitignore to exclude shell scripts

This commit is contained in:
Max 2024-12-04 11:38:52 +08:00
parent 7ddacd70f9
commit 401fd3aa94
2 changed files with 3 additions and 2 deletions

View file

@ -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
View file

@ -41,3 +41,4 @@ xgen/v1.0/*
*-unit-test *-unit-test
docker/build/test docker/build/test
db db
*.sh