Skip to content

Commit

Permalink
Different conductor URL for production builds (#1255)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Cassidy <[email protected]>

# Different conductor URL for production builds

## JIRA Ticket

None

## Description

Need a different configuration variable for production build server.

## Proposed Changes

Adds PRODUCTION_CONDUCTOR_URL to production builds.


## Checklist

- [x] I have confirmed all commits have been signed.
- [x] I have added JSDoc style comments to any new functions or classes.
- [x] Relevant documentation such as READMEs, guides, and class comments
are updated.
  • Loading branch information
stevecassidy authored Dec 12, 2024
2 parents 4218a2d + c251b5c commit fafc607
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/appstore-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ jobs:
export VITE_CLUSTER_ADMIN_GROUP_NAME=cluster-admin
export VITE_COMMIT_VERSION=${{env.version_string}}
export VITE_SHOW_WIPE=true
export VITE_SHOW_MINIFAUXTON=true
export VITE_CONDUCTOR_URL=${{vars.NIGHTLY_CONDUCTOR_URL}}
export VITE_SHOW_MINIFAUXTON=false
export VITE_CONDUCTOR_URL=${{vars.PRODUCTION_CONDUCTOR_URL}}
export VITE_TAG=prodIOS
export VITE_NOTEBOOK_LIST_TYPE=${{vars.NOTEBOOK_LIST_TYPE}}
export VITE_NOTEBOOK_NAME=${{vars.NOTEBOOK_NAME}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fieldmark-google-play-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
export VITE_COMMIT_VERSION=${{env.version_string}}
export VITE_SHOW_WIPE=true
export VITE_SHOW_MINIFAUXTON=false
export VITE_CONDUCTOR_URL=${{vars.NIGHTLY_CONDUCTOR_URL}}
export VITE_CONDUCTOR_URL=${{vars.PRODUCTION_CONDUCTOR_URL}}
export VITE_TAG=prodAndroid
export VITE_NOTEBOOK_LIST_TYPE=${{vars.NOTEBOOK_LIST_TYPE}}
export VITE_NOTEBOOK_NAME=${{vars.NOTEBOOK_NAME}}
Expand Down

0 comments on commit fafc607

Please sign in to comment.