Explorar el Código

update release webextensions script

pull/324/head
Guillaume Vincent hace 7 años
padre
commit
a087704aef
Se han modificado 1 ficheros con 2 adiciones y 4 borrados
  1. +2
    -4
      scripts/release-webextensions.sh

+ 2
- 4
scripts/release-webextensions.sh Ver fichero

@@ -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 ..


Cargando…
Cancelar
Guardar