mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 00:13:53 +00:00
declare env variables
This commit is contained in:
committed by
Carlos Valente
parent
2d5b86808f
commit
bd0c951da8
@@ -36,7 +36,7 @@ jobs:
|
||||
APPLE_TEAM_ID: ${{ secrets.TEAMID }}
|
||||
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
|
||||
CSC_LINK: ${{ secrets.CSC_LINK }}
|
||||
run: pnpm dist-mac
|
||||
run: pnpm dist-mac --env-mode=loose
|
||||
timeout-minutes: 60
|
||||
|
||||
- name: Release
|
||||
|
||||
+10
-3
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"globalEnv": ["NODE_ENV", "GITHUB_TOKEN"],
|
||||
"tasks": {
|
||||
"dev": {
|
||||
"cache": false
|
||||
@@ -18,9 +19,13 @@
|
||||
"typecheck": {
|
||||
"cache": false
|
||||
},
|
||||
"build": {},
|
||||
"build": {
|
||||
"env": ["SENTRY_AUTH_TOKEN"]
|
||||
},
|
||||
"build:local": {},
|
||||
"build:electron": {},
|
||||
"build:electron": {
|
||||
"env": ["SENTRY_AUTH_TOKEN"]
|
||||
},
|
||||
"build:localdocker": {},
|
||||
"e2e": {
|
||||
"dependsOn": [
|
||||
@@ -28,7 +33,9 @@
|
||||
]
|
||||
},
|
||||
"dist-win": {},
|
||||
"dist-mac": {},
|
||||
"dist-mac": {
|
||||
"env": ["APPLEID", "APPLEIDPASS", "TEAMID", "CSC_KEY_PASSWORD", "CSC_LINK"]
|
||||
},
|
||||
"dist-mac:local": {},
|
||||
"dist-linux": {},
|
||||
"cleanup": {}
|
||||
|
||||
Reference in New Issue
Block a user