Skip to content

Commit 4e19196

Browse files
committed
feat: beta releases
1 parent f5d6154 commit 4e19196

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release_desktop_app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# APPLE_ID: ${{ secrets.apple_id }}
2121
# APPLE_ID_PASS: ${{ secrets.apple_id_pass }}
2222

23-
if: github.ref == 'refs/heads/master'|| github.ref == 'refs/heads/production'
23+
if: github.ref == 'refs/heads/master'|| github.ref == 'refs/heads/production' || github.ref == 'refs/heads/beta'
2424
runs-on: ${{ github.event.inputs.build_type }}
2525

2626
steps:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,12 @@
148148
"provider": "github",
149149
"releaseType": "release",
150150
"owner": "requestly",
151-
"repo": "requestly-desktop-app"
151+
"repo": "requestly-desktop-beta"
152152
}
153153
},
154154
"repository": {
155155
"type": "git",
156-
"url": "git+https://github.com/requestly/requestly-desktop-app.git"
156+
"url": "git+https://github.com/requestly/requestly-desktop-beta.git"
157157
},
158158
"author": {
159159
"name": "BrowserStack Inc.",

src/main/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ const getWebAppURL = (): string => {
207207
}
208208
return isDevelopment
209209
? "http://localhost:3000"
210-
: "https://app.requestly.io";
210+
: "https://beta.requestly.io";
211211
};
212212

213213
let closingAccepted = false;

0 commit comments

Comments
 (0)