chore(release): rename development tag to nightly

This commit is contained in:
Harsh Shandilya 2022-09-29 00:52:44 +05:30
parent d1b74a71ad
commit 2623377027
No known key found for this signature in database
2 changed files with 7 additions and 7 deletions

View file

@ -12,7 +12,7 @@ Unofficial Android app for read-only access to [lobste.rs](https://lobste.rs), b
height="80" />
</a>
Snapshots from the development branch can be obtained [here](https://github.com/msfjarvis/compose-lobsters/releases/latest).
Snapshots from the development branch can be obtained [here](https://github.com/msfjarvis/compose-lobsters/releases/tag/nightly).
## License

View file

@ -2,25 +2,25 @@
set -euxo pipefail
LATEST_TAG="latest"
NIGHTLY_TAG="nightly"
CURRENT_REV="$(git rev-parse --short HEAD)"
ASSET_DIRECTORY="${GITHUB_WORKSPACE:?}/android/outputs"
function overwrite_local_tag() {
git tag -f "${LATEST_TAG}"
git tag -f "${NIGHTLY_TAG}"
}
function overwrite_remote_tag() {
git push -f origin "${LATEST_TAG}"
git push -f origin "${NIGHTLY_TAG}"
}
function has_release() {
gh release view "${LATEST_TAG}" &>/dev/null
gh release view "${NIGHTLY_TAG}" &>/dev/null
echo "$?"
}
function delete_release() {
gh release delete --yes "${LATEST_TAG}"
gh release delete --yes "${NIGHTLY_TAG}"
}
function create_release() {
@ -28,7 +28,7 @@ function create_release() {
CHANGELOG_FILE="$(mktemp)"
echo "Latest release for Claw from revision ${CURRENT_REV}" | tee "${CHANGELOG_FILE}"
pushd "${ASSET_DIRECTORY}" || return
gh release create --prerelease --title "Latest snapshot build" --notes-file "${CHANGELOG_FILE}" "${LATEST_TAG}" ./*
gh release create --prerelease --title "Latest snapshot build" --notes-file "${CHANGELOG_FILE}" "${NIGHTLY_TAG}" ./*
popd || return
}