Procházet zdrojové kódy

Fix publish script

master
TheoryOfNekomata před 4 roky
rodič
revize
49483d6489
1 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. +4
    -2
      publish.sh

+ 4
- 2
publish.sh Zobrazit soubor

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


Načítá se…
Zrušit
Uložit