Skip to content

Commit 1146196

Browse files
committed
fix: use production base url
1 parent 66b9421 commit 1146196

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.4",
2+
"version": "1.0.5",
33
"name": "@elfsquad/cli",
44
"main": "dist/index.js",
55
"scripts": {

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const publish = async () => {
9696

9797
// 4. Upload the zip file to the server
9898
const accessToken = await getAccessToken()
99-
const url = 'http://localhost:5101/api/2/extensions'
99+
const url = 'https://api.elfsquad.io/api/2/extensions'
100100
const zipBlob = new Blob([zipContent], { type: 'application/zip' });
101101

102102
const formData = new FormData()

0 commit comments

Comments
 (0)