Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Docker tags for specific Debian version (#105)
PR #105 and 6a99cd0 introduced support for specifying the Debian version when building Docker images, ensuring that the version does not change unexpectedly. This change altered Docker tag syntax by adding the Debian version release name (currently "bookworm") to all Debian Docker images. For example, `ghcr.io/br3ndonland/inboard:latest` became `ghcr.io/br3ndonland/inboard:latest-bookworm`. inboard is not planning to support multiple Debian versions simultaneously. inboard will update to the next Debian version, Debian 13 ("trixie") when it is stable and will provide a new release after the update. This means there is no need to add the Debian version release name to the Docker tags. This commit will update the code in the GitHub Actions workflow job used to produce Docker tags to match the previous tag syntax. The latest Debian image will return to `ghcr.io/br3ndonland/inboard:latest` and the latest Debian slim to `ghcr.io/br3ndonland/inboard:latest-slim`. Syntax for Alpine Docker images remains unaltered, so tags like `ghcr.io/br3ndonland/inboard:latest-alpine` are still valid.
- Loading branch information