Skip to content

Commit

Permalink
GH pull request somehow lost all the actual changes, redo
Browse files Browse the repository at this point in the history
  • Loading branch information
earlephilhower committed Jun 21, 2024
1 parent f451686 commit 33c9261
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
17 changes: 17 additions & 0 deletions PACKAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Publishing New Releases
=======================

First, update the version number throughout the repo and add the tag:

./version.sh X.Y.Z

Verify things have gone well and then push the change and tag:

git commit -a -m "Update version"
git push
git push origin X.Y.Z

GitHub CI Actions are used to automatically build a draft package whenever a tag is pushed to repo.

This will generate a draft release with a bulleted-list of ``git`` changes.
Edit the list and title as desired, then use the ``Publish`` button on the web interface to publish the release
5 changes: 5 additions & 0 deletions version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
tmp=$(mktemp)
jq '.version = "'$1'"' ./package.json > "$tmp"
mv "$tmp" ./package.json
git tag $1

0 comments on commit 33c9261

Please sign in to comment.