Skip to content

Commit 42f1e31

Browse files
committed
Fixing beta builds
1 parent 06b7d8f commit 42f1e31

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

add-on/manifest.common.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"manifest_version": 3,
3-
"name": "__MSG_manifest_extensionName__-RC-MV3",
3+
"name": "__MSG_manifest_extensionName__",
44
"short_name": "__MSG_manifest_shortExtensionName__",
55
"version": "3.0.0",
66
"description": "__MSG_manifest_extensionDescription__",

ci/update-manifest.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function set-manifest {
2323
# Name includes git revision to make QA and bug reporting easier for users :-)
2424
REVISION=$(git show-ref --head HEAD | head -c 7)
2525
if [ "$RELEASE_CHANNEL" = "beta" ]; then
26-
set-manifest ".name = \"IPFS Companion (Beta @ $REVISION)\""
26+
set-manifest ".name = \"IPFS Companion RC-MV3 (Beta @ $REVISION)\""
2727
else
2828
set-manifest ".name = \"IPFS Companion (Dev Build @ $REVISION)\""
2929
fi

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@
3636
"bundle:firefox": "shx cat add-on/manifest.common.json add-on/manifest.firefox.json | json --deep-merge > add-on/manifest.json && web-ext build -a build/firefox/ && run-s build:rename-artifacts",
3737
"bundle:firefox:": "npm run bundle:firefox",
3838
"bundle:firefox:stable": "npm run bundle:firefox",
39+
"bundle:firefox:beta": "npm run bundle:firefox",
3940
"bundle:brave": "shx cat add-on/manifest.common.json add-on/manifest.chromium.json add-on/manifest.brave.json | json --deep-merge > add-on/manifest.json && web-ext build -a build/brave/ && run-s build:rename-artifacts",
4041
"bundle:brave:": "npm run bundle:brave",
4142
"bundle:brave:stable": "npm run bundle:brave",
43+
"bundle:brave:beta": "npm run bundle:brave",
4244
"watch": "npm-run-all build:copy --parallel watch:*",
4345
"watch:js": "run-p watch:js:*",
4446
"watch:js:webpack": "webpack --watch --mode development --devtool inline-source-map --config ./webpack.config.js",

0 commit comments

Comments
 (0)