Update workflows to also build tagged releases

Signed-off-by: simonmicro <simon@simonmicro.de>
This commit is contained in:
simonmicro 2025-12-06 18:38:47 +01:00
parent 565ef8d500
commit 62508dfc49
No known key found for this signature in database
GPG key ID: 033A4D4CE4E063D6
5 changed files with 104 additions and 14 deletions

View file

@ -2,7 +2,7 @@
FROM alpine:3.22
ARG BUILD_COMMIT=unknown
ARG BUILD_BRANCH=unknown
ARG BUILD_REFERENCE=unknown
ENV IP=::
ENV DUALSTACK=1
@ -50,7 +50,7 @@ RUN chown root: -R /home/py-kms && \
# Web-interface specifics
COPY LICENSE /LICENSE
RUN echo "$BUILD_COMMIT" > /VERSION && echo "$BUILD_BRANCH" >> /VERSION
RUN echo "$BUILD_COMMIT" > /VERSION && echo "$BUILD_REFERENCE" >> /VERSION
WORKDIR /home/py-kms