Skip to content

Commit

Permalink
Fixing beta builds
Browse files Browse the repository at this point in the history
  • Loading branch information
whizzzkid committed May 11, 2023
1 parent 06b7d8f commit 42f1e31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion add-on/manifest.common.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 3,
"name": "__MSG_manifest_extensionName__-RC-MV3",
"name": "__MSG_manifest_extensionName__",
"short_name": "__MSG_manifest_shortExtensionName__",
"version": "3.0.0",
"description": "__MSG_manifest_extensionDescription__",
Expand Down
2 changes: 1 addition & 1 deletion ci/update-manifest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function set-manifest {
# Name includes git revision to make QA and bug reporting easier for users :-)
REVISION=$(git show-ref --head HEAD | head -c 7)
if [ "$RELEASE_CHANNEL" = "beta" ]; then
set-manifest ".name = \"IPFS Companion (Beta @ $REVISION)\""
set-manifest ".name = \"IPFS Companion RC-MV3 (Beta @ $REVISION)\""
else
set-manifest ".name = \"IPFS Companion (Dev Build @ $REVISION)\""
fi
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@
"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",
"bundle:firefox:": "npm run bundle:firefox",
"bundle:firefox:stable": "npm run bundle:firefox",
"bundle:firefox:beta": "npm run bundle:firefox",
"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",
"bundle:brave:": "npm run bundle:brave",
"bundle:brave:stable": "npm run bundle:brave",
"bundle:brave:beta": "npm run bundle:brave",
"watch": "npm-run-all build:copy --parallel watch:*",
"watch:js": "run-p watch:js:*",
"watch:js:webpack": "webpack --watch --mode development --devtool inline-source-map --config ./webpack.config.js",
Expand Down

0 comments on commit 42f1e31

Please sign in to comment.