Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: cleanup #126

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 0 additions & 54 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,60 +92,6 @@ jobs:
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile --network-timeout 100000

# - name: Scan licenses
# uses: fossas/fossa-action@main # Use a specific version if locking is preferred
# with:
# api-key: ${{ secrets.FOSSA_API_KEY }}

# - name: Prepare for macOS app notarization
# if: startsWith(matrix.os, 'macos')
# env:
# APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
# APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}
# APPLE_API_KEY_ISSUER: ${{ secrets.APPLE_API_KEY_ISSUER }}
# CSC_LINK: ${{ secrets.CSC_LINK }}
# CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
# run: |
# # Set temporary environment variables
# KEYCHAIN_PROFILE="notarization"
# KEYCHAIN_PASSWORD="$(openssl rand -base64 12)"
# KEYCHAIN_PATH="$RUNNER_TEMP/code-signing.keychain-db"
# CSC_PATH="$RUNNER_TEMP/build_certificate.p12"
# APPLE_KEY_DIR_PATH="$HOME/private_keys"
# APPLE_API_KEY_PATH="$APPLE_KEY_DIR_PATH/AuthKey_$APPLE_API_KEY_ID.p8"

# # Create code signing Keychain
# security create-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH"
# security set-keychain-settings -lut 21600 "$KEYCHAIN_PATH"
# security unlock-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH"

# # Write App Store Connect API key for Notary service
# mkdir -p "$APPLE_KEY_DIR_PATH"
# echo -n "$APPLE_API_KEY" > "$APPLE_API_KEY_PATH"

# # Import Notary service credentials to Keychain
# xcrun notarytool store-credentials \
# -k="$APPLE_API_KEY_PATH" \
# -d="$APPLE_API_KEY_ID" \
# -i="$APPLE_API_KEY_ISSUER" \
# --keychain="$KEYCHAIN_PATH" \
# "$KEYCHAIN_PROFILE"

# # Write code signing certificate
# echo -n "$CSC_LINK" | base64 -d -o "$CSC_PATH"

# # Import code signing certificate to Keychain
# security import "$CSC_PATH" -P "$CSC_KEY_PASSWORD" -A -t cert -f pkcs12 -k "$KEYCHAIN_PATH"
# security list-keychain -d user -s "$KEYCHAIN_PATH"

# # Delete code signing certificate
# rm -rf "$CSC_PATH"

# # Set persistent environment variables
# echo "KEYCHAIN_PROFILE=$KEYCHAIN_PROFILE" >> $GITHUB_ENV
# echo "KEYCHAIN_PATH=$KEYCHAIN_PATH" >> $GITHUB_ENV
# echo "APPLE_KEY_DIR_PATH=$APPLE_KEY_DIR_PATH" >> $GITHUB_ENV

- name: Build packages
run: |
export NODE_OPTIONS="--max_old_space_size=4096"
Expand Down