Parcourir la source

Fix publish script

master
TheoryOfNekomata il y a 4 ans
Parent
révision
49483d6489
1 fichiers modifiés avec 4 ajouts et 2 suppressions
  1. +4
    -2
      publish.sh

+ 4
- 2
publish.sh Voir le fichier

@@ -1,11 +1,13 @@
defaultBranch=master

for branch in $(cat package.json | jq .publishing | jq -r keys[]) ; do
git checkout $branch

rawRepository=$(cat package.json | jq -r .publishing.$branch.repository)
repository=$(cat package.json | jq -r .publishing.$branch.repository)
currentRepository=$(cat package.json | jq -r .repository)
defaultRepository=$(cat package.json | jq -r .publishing.$defaultBranch.repository)

if [ $repository = $currentRepository ]; then
if [ $repository = $defaultRepository ]; then
echo "$( jq --arg repository "$repository" '.repository = $repository' package.json )" > package.json
echo "Publishing to primary repository: $repository"
git push


Chargement…
Annuler
Enregistrer