Actions
Prepare release¶
- Define component
PACKAGE=backend
- Create a new version with
gbp dch --ignore-branch
. - Replace release
sed -i "s/UNRELEASED/focal/g"
. - Store the version
VERSION=$(head -n 1 debian/changelog| cut -d' ' -f2 | sed 's/[\(\)]*//g')
- Store the package
- Build with podman
make podman
- Tag the release
podman tag docker.io/iabsis/hcw-${PACKAGE}:latest docker.io/iabsis/hcw-${PACKAGE}:${VERSION}
- Push everything
podman push docker.io/iabsis/hcw-${PACKAGE}:latest docker.io/iabsis/hcw-${PACKAGE}:${VERSION}
Updated by Olivier Bitsch 9 months ago · 3 revisions