diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a269928f3..292ff196d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,6 +3,7 @@ on: push: branches: - main + - beta jobs: release: name: Release diff --git a/src/Client.ts b/src/Client.ts index 9cae7d393..a5bc3b1de 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -161,6 +161,7 @@ export default class Client { wallet: Signer | null, opts?: Partial ): Promise { + console.log('Is in beta channel') const options = defaultOptions(opts) const apiClient = createApiClientFromOptions(options) const keys = await loadOrCreateKeysFromOptions(options, wallet, apiClient)