Sfoglia il codice sorgente

update release webextensions script

pull/324/head
Guillaume Vincent 7 anni fa
parent
commit
a087704aef
1 ha cambiato i file con 2 aggiunte e 4 eliminazioni
  1. +2
    -4
      scripts/release-webextensions.sh

+ 2
- 4
scripts/release-webextensions.sh Vedi File

@@ -15,14 +15,12 @@ fi

cd webextension
npm version $1
TAG_NAME="$(git describe --abbrev=0 --tags)"

npm run version
npm run build
git add .
git commit --amend --no-edit
TAG_NAME="$(git describe --abbrev=0 --tags)"
git tag -d $TAG_NAME
git tag $TAG_NAME
npm run build

git push --tags origin master
cd ..


Caricamento…
Annulla
Salva