Skip to content

Commit

Permalink
Fix release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jho406 committed Nov 26, 2023
1 parent 3a83f10 commit 6c267fd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions bin/release
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ Dir.chdir(SUPERGLUE_DIR) do
system("npm publish dist")
end

Dir.chdir("#{SUPERGLUE_DIR}/dist") do
system("npm publish")
end

system("git tag v#{version_str}")
system("git push origin v#{version_str}")
system("git branch docs/v#{version_str}")
system("git push origin docs/v#{version_str}")
system("git push origin main")

0 comments on commit 6c267fd

Please sign in to comment.