diff options
Diffstat (limited to 'scripts/deploy-snapshot.sh')
-rwxr-xr-x | scripts/deploy-snapshot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/deploy-snapshot.sh b/scripts/deploy-snapshot.sh index 760e52ef..162282f3 100755 --- a/scripts/deploy-snapshot.sh +++ b/scripts/deploy-snapshot.sh @@ -38,7 +38,7 @@ function create_release() { CHANGELOG_FILE="$(mktemp)" echo "Latest release for APS from revision ${CURRENT_REV}" | tee "${CHANGELOG_FILE}" pushd "${ASSET_DIRECTORY}" || return - gh release create --title "Latest snapshot build" -F "${CHANGELOG_FILE}" "${LATEST_TAG}" ./* + gh release create --prerelease --title "Latest snapshot build" --notes-file "${CHANGELOG_FILE}" "${LATEST_TAG}" ./* popd || return } |