mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-17 10:45:10 +00:00
f1a7cca4a6
mod: change `date-time` format of snapshot to be more human readable See comment on: - https://github.com/plantuml/plantuml/pull/774#issuecomment-969362702
28 lines
799 B
Bash
Executable File
28 lines
799 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
TAG="snapshot"
|
|
|
|
gh release delete "${TAG}" -y || true
|
|
|
|
git tag --force "${TAG}"
|
|
|
|
git push --force origin "${TAG}"
|
|
|
|
mv plantuml.jar plantuml-SNAPSHOT.jar
|
|
mv plantuml-javadoc.jar plantuml-SNAPSHOT-javadoc.jar
|
|
mv plantuml-sources.jar plantuml-SNAPSHOT-sources.jar
|
|
|
|
cat <<-EOF >notes.txt
|
|
This is a pre-release of the latest development work.
|
|
⚠️ **It is not ready for general use** ⚠️
|
|
⏱ _Snapshot taken the $(date -u +"%F at %T (UTC)")_
|
|
EOF
|
|
|
|
gh release create --prerelease --target "${GITHUB_SHA}" --title "${TAG}" --notes-file notes.txt "${TAG}" \
|
|
plantuml-SNAPSHOT.jar \
|
|
plantuml-SNAPSHOT-javadoc.jar \
|
|
plantuml-SNAPSHOT-sources.jar
|
|
|
|
echo "::notice title=::Snapshot released at ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/releases/tag/${TAG}"
|