-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
R. S. Doiel
committed
Jan 16, 2025
1 parent
b08c15f
commit 04827ab
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# Generate a new draft release using jq and gh | ||
# Generate a new draft release jq and gh | ||
# | ||
RELEASE_TAG="v$(jq -r .version codemeta.json)" | ||
RELEASE_NOTES="$(jq -r .releaseNotes codemeta.json)" | ||
make save msg="prep for ${RELEASE_TAG}, $RELEASE_NOTES}" | ||
make save msg="prep for ${RELEASE_TAG}, ${RELEASE_NOTES}" | ||
# Now generate a draft releas | ||
gh release create "${RELEASE_TAG}" \ | ||
--verify-tag --draft \ | ||
--draft \ | ||
--notes="${RELEASE_NOTES}" \ | ||
dist/*.zip | ||
echo "Now goto repo release and finalize draft" |