1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Gitlab CI Testing

This commit is contained in:
Michael Hollister 2024-10-02 12:11:35 -05:00
parent f072cb51bd
commit fa065b3a3b
2 changed files with 7 additions and 7 deletions

View file

@ -5,8 +5,8 @@ buildMacOs:
- m1-macos
before_script:
- cd receivers/electron
- echo testing envrionment variable access $TESTVAR
- security unlock-keychain -p "$KEYCHAIN_CODESIGN_PASSWORD" "$HOME/Library/Keychains/codesign.keychain-db"
# - echo testing envrionment variable access $TESTVAR
# - security unlock-keychain -p "$KEYCHAIN_CODESIGN_PASSWORD" "$HOME/Library/Keychains/codesign.keychain-db"
script:
- npm install
- npm run build

View file

@ -5,13 +5,13 @@ module.exports = {
packagerConfig: {
asar: true,
osxSign: {
"identity": process.env.FCAST_APPLE_SIGN_ID
// "identity": process.env.FCAST_APPLE_SIGN_ID
},
osxNotarize: {
keychainProfile: "codesign"
// appleApiKey: process.env.FCAST_APPLE_API_KEY,
// appleApiKeyId: process.env.FCAST_APPLE_API_KEY_ID,
// appleApiIssuer: process.env.FCAST_APPLE_API_ISSUER
// keychainProfile: "codesign"
appleApiKey: process.env.FCAST_APPLE_API_KEY,
appleApiKeyId: process.env.FCAST_APPLE_API_KEY_ID,
appleApiIssuer: process.env.FCAST_APPLE_API_ISSUER
}
},
rebuildConfig: {},