diff --git a/.github/workflows/release_desktop_app.yml b/.github/workflows/release_desktop_app.yml index 83cf7dc..5ac6e47 100644 --- a/.github/workflows/release_desktop_app.yml +++ b/.github/workflows/release_desktop_app.yml @@ -20,7 +20,7 @@ jobs: # APPLE_ID: ${{ secrets.apple_id }} # APPLE_ID_PASS: ${{ secrets.apple_id_pass }} - if: github.ref == 'refs/heads/master'|| github.ref == 'refs/heads/production' + if: github.ref == 'refs/heads/master'|| github.ref == 'refs/heads/production' || github.ref == 'refs/heads/beta' runs-on: ${{ github.event.inputs.build_type }} steps: diff --git a/package.json b/package.json index 13fafec..e7684f3 100644 --- a/package.json +++ b/package.json @@ -148,12 +148,12 @@ "provider": "github", "releaseType": "release", "owner": "requestly", - "repo": "requestly-desktop-app" + "repo": "requestly-desktop-beta" } }, "repository": { "type": "git", - "url": "git+https://github.com/requestly/requestly-desktop-app.git" + "url": "git+https://github.com/requestly/requestly-desktop-beta.git" }, "author": { "name": "BrowserStack Inc.", diff --git a/src/main/main.ts b/src/main/main.ts index f107c9c..d9022dc 100644 --- a/src/main/main.ts +++ b/src/main/main.ts @@ -207,7 +207,7 @@ const getWebAppURL = (): string => { } return isDevelopment ? "http://localhost:3000" - : "https://app.requestly.io"; + : "https://beta.requestly.io"; }; let closingAccepted = false;