mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-28 02:18:36 +00:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Chores** - Streamlined the asset release process to automatically replace existing files during uploads. - **Container Image Updates** - Upgraded versions across multiple components—including backup, caching, autoscaling, API, dashboard, monitoring, and more—to align with the latest release (e.g., updating from v0.28.0 to v0.29.0 and other minor version increments). - Updated specific images for Grafana, PostgreSQL, MariaDB, ClickHouse, and others to their latest versions. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Signed-off-by: Nick Volynkin <nick.volynkin@gmail.com> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
9 lines
329 B
Bash
Executable File
9 lines
329 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
version=$(git describe --tags)
|
|
gh release upload --clobber $version _out/assets/cozystack-installer.yaml
|
|
gh release upload --clobber $version _out/assets/metal-amd64.iso
|
|
gh release upload --clobber $version _out/assets/metal-amd64.raw.xz
|
|
gh release upload --clobber $version _out/assets/nocloud-amd64.raw.xz
|