From 401fd3aa94950aa12c24b981e2e20473723865d8 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 4 Dec 2024 11:38:52 +0800 Subject: [PATCH] Fix code signing command and update .gitignore to exclude shell scripts --- .github/workflows/build-macos.yml | 2 +- .gitignore | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 7fd88735..c1acd01d 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -149,7 +149,7 @@ jobs: - name: Sign Artifacts 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 - name: Verify Signature diff --git a/.gitignore b/.gitignore index 3c573ade..38df4f34 100644 --- a/.gitignore +++ b/.gitignore @@ -40,4 +40,5 @@ xgen/v1.0/* !pipe/ui *-unit-test docker/build/test -db \ No newline at end of file +db +*.sh \ No newline at end of file