From 842b3e9bf559cd26fc72b193e0c60deed855a70c Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 6 Mar 2022 22:19:44 +0530 Subject: [PATCH] Meta changes to snapshots and reviews (#1769) --- .github/CODEOWNERS | 2 -- scripts/deploy-snapshot.sh | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index 05a93d9ac..000000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1,2 +0,0 @@ -# Catch-all rule for the project -* @android-password-store/devs diff --git a/scripts/deploy-snapshot.sh b/scripts/deploy-snapshot.sh index 760e52ef8..162282f36 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 }