mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Fix pushing of release tags.
This commit is contained in:
parent
73751040b7
commit
213a13884b
1 changed files with 4 additions and 4 deletions
|
@ -50,10 +50,10 @@ git add -u component.json
|
||||||
git add -u dist
|
git add -u dist
|
||||||
# Commit
|
# Commit
|
||||||
git commit -m "Bump version to v$VERSION"
|
git commit -m "Bump version to v$VERSION"
|
||||||
# Tag
|
# Tag & Push
|
||||||
git tag "v$VERSION"
|
git tag "v$VERSION"
|
||||||
# Push
|
git push
|
||||||
git push --follow-tags
|
git push --tags
|
||||||
# Publish
|
# Publish
|
||||||
npm publish
|
npm publish
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ cp $PAPER_DIR/dist/paper-full.js assets/js/paper.js
|
||||||
git add -A $DIST_FILE
|
git add -A $DIST_FILE
|
||||||
git add -u assets/js/paper.js
|
git add -u assets/js/paper.js
|
||||||
git commit -m "Release version v$VERSION"
|
git commit -m "Release version v$VERSION"
|
||||||
# Tag
|
# Tag & Push
|
||||||
git tag "v$VERSION"
|
git tag "v$VERSION"
|
||||||
git push
|
git push
|
||||||
git push --tags
|
git push --tags
|
||||||
|
|
Loading…
Reference in a new issue