Skip to content

Commit bf9a69e

Browse files
committed
fix: reproducible build (II)
Turns out yarn fails silently when registry.js.ipfs.io is down so docker build was always flawed. To fix it ASAP we switch to yarn repo and bump version to make a new stable and reproducible release for Mozilla.
1 parent 1b2e0c7 commit bf9a69e

File tree

3 files changed

+121
-121
lines changed

3 files changed

+121
-121
lines changed

add-on/manifest.common.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "__MSG_manifest_extensionName__",
44
"short_name": "__MSG_manifest_shortExtensionName__",
5-
"version": "2.7.2",
5+
"version": "2.7.3",
66
"description": "__MSG_manifest_extensionDescription__",
77
"homepage_url": "https://github.com/ipfs-shipyard/ipfs-companion",
88
"author": "IPFS Community",

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
"ci:install": "npx [email protected] install --frozen-lockfile || npx [email protected] install --frozen-lockfile",
6060
"ci:test": "npx [email protected] test",
6161
"ci:build": "./ci/update-manifest.sh ; npx [email protected] build ; chmod -R ugo+rwX build/ add-on/",
62-
"beta-build": "docker build -t ipfs-companion . && docker run -it -e RELEASE_CHANNEL=beta -v $(pwd)/build:/usr/src/app/build ipfs-companion yarn ci:build",
63-
"release-build": "docker build -t ipfs-companion . && docker run -it -e RELEASE_CHANNEL=stable -v $(pwd)/build:/usr/src/app/build ipfs-companion yarn ci:build",
62+
"beta-build": "docker build -t ipfs-companion . && docker run -it --net=host -e RELEASE_CHANNEL=beta -v $(pwd)/build:/usr/src/app/build ipfs-companion yarn ci:build",
63+
"release-build": "docker build -t ipfs-companion . && docker run -it --net=host -e RELEASE_CHANNEL=stable -v $(pwd)/build:/usr/src/app/build ipfs-companion yarn ci:build",
6464
"dev-build": "npx [email protected] && npx [email protected] build",
6565
"yarn-build": "npm run dev-build"
6666
},

0 commit comments

Comments
 (0)