1
0
mirror of https://git.tuxpa.in/a/code-server.git synced 2025-01-09 09:48:45 +00:00
code-server-2/ci/steps/docker-buildx-push.sh

17 lines
340 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
# ci/lib.sh sets VERSION and provides download_artifact here
source ./ci/lib.sh
# Download the release-packages artifact
download_artifact release-packages ./release-packages
docker buildx bake -f ci/release-image/docker-bake.hcl --push
}
main "$@"