mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 17:11:40 -05:00
Add unsigned build path
This commit is contained in:
parent
d536329970
commit
68452ff5c6
1 changed files with 4 additions and 3 deletions
|
@ -31,7 +31,7 @@ build_no_sign_beta(){
|
|||
scripts/version.js beta
|
||||
sed 's/"name": "Tridactyl"/"name": "Tridactyl: Beta"/' -i build/manifest.json
|
||||
mkdir -p web-ext-artifacts
|
||||
web-ext build --source-dir ./build --overwrite-dest
|
||||
$(yarn bin)/web-ext build --source-dir ./build --overwrite-dest
|
||||
for f in web-ext-artifacts/*.zip; do
|
||||
mv $f ${f%.zip}.xpi
|
||||
done
|
||||
|
@ -40,10 +40,9 @@ build_no_sign_beta(){
|
|||
build_no_sign_stable(){
|
||||
yarn run clean
|
||||
yarn run build
|
||||
scripts/version.js beta
|
||||
sed 's/tridactyl.vim.betas@cmcaine/tridactyl.vim@cmcaine/' -i build/manifest.json
|
||||
mkdir -p web-ext-artifacts
|
||||
web-ext build --source-dir ./build --overwrite-dest
|
||||
$(yarn bin)/web-ext build --source-dir ./build --overwrite-dest
|
||||
for f in web-ext-artifacts/*.zip; do
|
||||
mv $f ${f%.zip}.xpi
|
||||
done
|
||||
|
@ -59,6 +58,8 @@ publish_stable() {
|
|||
|
||||
case $1 in
|
||||
stable) publish_stable;;
|
||||
nosignstable) build_no_sign_stable;;
|
||||
nosignbeta) build_no_sign_beta;;
|
||||
nonewtab) publish_beta_nonewtab;;
|
||||
*|beta) publish_beta;;
|
||||
esac
|
||||
|
|
Loading…
Add table
Reference in a new issue