aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-03-06 22:19:44 +0530
committerGitHub <noreply@github.com>2022-03-06 16:49:44 +0000
commit842b3e9bf559cd26fc72b193e0c60deed855a70c (patch)
tree0a76d9d39c3562c4b8716f21aa75af2f32593bc7
parent47aecbca538d1109b37853eb4912cfe80b7804df (diff)
Meta changes to snapshots and reviews (#1769)
-rw-r--r--.github/CODEOWNERS2
-rwxr-xr-xscripts/deploy-snapshot.sh2
2 files changed, 1 insertions, 3 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
deleted file mode 100644
index 05a93d9a..00000000
--- 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 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
}