Skip to content

Commit

Permalink
ci: fix unstable tag publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
tplooker committed Apr 26, 2020
1 parent 305cd0e commit 006c5e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/publish_ts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ node scripts/add_stable_install_script.js
new_version=$(node -pe "require('./package.json').version")

# Version to this new unstable version
yarn publish --no-git-tag-version --new-version $new_version --tag unstable
yarn publish --no-git-tag-version --new-version $new_version

# Reset changes to the package.json
git checkout -- package.json
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish_unstable_ts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ new_version=$(node -pe "require('./package.json').version")
new_unstable_version=$new_version"-unstable.$(git rev-parse --short HEAD)"

# Version to this new unstable version
yarn publish --no-git-tag-version --new-version $new_unstable_version
yarn publish --no-git-tag-version --new-version $new_unstable_version --tag unstable

# Reset changes to the package.json
git checkout -- package.json
Expand Down

0 comments on commit 006c5e9

Please sign in to comment.