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 12c040d commit 1ef7936Copy full SHA for 1ef7936
.github/workflows/menlo-build.yml
@@ -494,7 +494,15 @@ jobs:
494
- name: Install Quill for notarization
495
if: runner.os == 'macOS'
496
run: |
497
- curl -sSfL https://raw.githubusercontent.com/anchore/quill/main/install.sh | sh -s -- -b /usr/local/bin
+ ARCH=$(uname -m)
498
+ echo "Detected architecture: $ARCH"
499
+
500
+ if [ "$ARCH" = "arm64" ]; then
501
+ INSTALL_DIR="/opt/homebrew/bin" # Apple Silicon Macs
502
+ else
503
+ INSTALL_DIR="/usr/local/bin" # Intel Macs
504
+ fi
505
+ curl -sSfL https://raw.githubusercontent.com/anchore/quill/main/install.sh | sh -s -- -b $INSTALL_DIR
506
quill --version
507
508
- name: Prepare notary key
0 commit comments