diff options
-rw-r--r-- | .github/CODEOWNERS | 2 | ||||
-rwxr-xr-x | scripts/deploy-snapshot.sh | 2 |
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 } |