feat: release dokku for 32-bit Raspbian Bullseye

Refs #5054
This commit is contained in:
Jose Diaz-Gonzalez
2022-02-28 17:12:58 -05:00
parent 9e8bfa03d0
commit 5ba274b605
2 changed files with 3 additions and 3 deletions

View File

@@ -205,9 +205,9 @@ install-dokku-from-deb-package() {
OS_ID="bullseye"
fi
elif [[ "$DOKKU_DISTRO" == "raspbian" ]]; then
OS_IDS=("buster")
OS_IDS=("buster" "bullseye")
if ! in-array "$OS_ID" "${OS_IDS[@]}"; then
OS_ID="buster"
OS_ID="bullseye"
fi
fi

View File

@@ -138,7 +138,7 @@ fn-publish-package() {
[[ "$RELEASE_TYPE" == "raspbian" ]] && DIST=raspbian
if [[ "$RELEASE_TYPE" == "raspbian" ]]; then
OS_IDS=("buster")
OS_IDS=("buster" "bullseye")
for OS_ID in "${OS_IDS[@]}"; do
log-info "(release-dokku) pushing deb to packagecloud.com/${REPOSITORY}/${DIST}"
package_cloud push "${REPOSITORY}/${DIST}/${OS_ID}" "$PACKAGE_NAME"