5afb26fb60
* fix(ci): correctly download npm artifact * fixup! fix(ci): correctly download npm artifact * docs: update MAINTAINING * fixup! docs: update MAINTAINING * fixup! Merge branch 'main' into 4949-chore-fix-npm-workflow * chore: get ci to run * refactor: use vVERSION branch name instead of release * refactor: use new download artifact in docker workflow * refactor: clean up release-github-assets script * fixup: remove extra v * fixup! fixup: remove extra v
14 lines
316 B
Bash
Executable File
14 lines
316 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
# NOTE@jsjoeio - this script assumes that you've downloaded
|
|
# the release-packages artifact to ./release-packages before
|
|
# running this docker buildx step
|
|
docker buildx bake -f ci/release-image/docker-bake.hcl --push
|
|
}
|
|
|
|
main "$@"
|