b978655c07
* refactor: get version dynamically * chore: remove version * fixup: missing quotes * refactor: drop global VERSION * wip: updating ersion in publish * refactor: update publish.yaml with version changes * refactor: release.yaml with new version changes * refactor: update build.yaml with version changes * chore: update maintainer * fixup: update version in build-vscode * fixup: fix github env version * try macos only * try again * last resort * joe again * this oneee * fixup: this should work * try using inputs * docs: update release notes * fixup!: use env.VERSION in docker step * fixup!: comment get and set version * fixup!: remove compress release package comment * fixup!: use $VERSION in npm-version * refactor: set VERSION in build VS Code step * refactor: use 0.0.0 in package.json version * refactor: delete release-prep script * Update ci/build/build-vscode.sh * fixup!: remove extra VERSION set in aur
16 lines
402 B
Bash
Executable File
16 lines
402 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
# NOTE@jsjoeio - this script assumes VERSION exists as an
|
|
# environment variable.
|
|
|
|
# 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 "$@"
|