Skip to content

Commit

Permalink
fixup! fixup! chore(suite-native): add github workflow for preview bu…
Browse files Browse the repository at this point in the history
…ilds and updates
  • Loading branch information
matejkriz committed Sep 30, 2024
1 parent 087a775 commit 4557eb4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion suite-native/app/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ const appSlugs = {
production: 'trezor-suite',
} as const satisfies Record<BuildType, string>;

const appOwners = {
debug: 'trezorcompany-develop',
preview: 'trezorcompany-develop',
develop: 'trezorcompany-develop',
production: 'trezorcompany',
} as const satisfies Record<BuildType, string>;

const projectIds = {
develop: '7deae0c5-11be-49ff-a872-f538223c57de',
preview: '15998f8a-e75c-4b60-959d-6f68e5ff4936',
Expand Down Expand Up @@ -159,7 +166,7 @@ export default ({ config }: ConfigContext): ExpoConfig => {
...config,
name,
slug: appSlugs[buildType],
owner: 'trezorcompany',
owner: appOwners[buildType],
version: suiteNativeVersion,
runtimeVersion: {
policy: 'fingerprint',
Expand Down

0 comments on commit 4557eb4

Please sign in to comment.