From bca9cc40ec49264f6e28ae72aa7f1ed00246b38c Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Thu, 20 Jun 2024 17:33:20 -0700 Subject: [PATCH] Fix release instructions --- PACKAGE.md | 2 ++ version.sh | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/PACKAGE.md b/PACKAGE.md index 69ca856..fbf84ff 100644 --- a/PACKAGE.md +++ b/PACKAGE.md @@ -9,6 +9,8 @@ Verify things have gone well and then push the change and tag: git commit -a -m "Update version" git push + + git tag X.Y.Z git push origin X.Y.Z GitHub CI Actions are used to automatically build a draft package whenever a tag is pushed to repo. diff --git a/version.sh b/version.sh index 70487ae..4ad665c 100755 --- a/version.sh +++ b/version.sh @@ -2,4 +2,3 @@ tmp=$(mktemp) jq '.version = "'$1'"' ./package.json > "$tmp" mv "$tmp" ./package.json -git tag $1