diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-04-22 10:18:06 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-04-22 10:18:06 +0200 |
commit | 71520594ca2ae593b64039a765a9d908565968c8 (patch) | |
tree | ec9582756f3f121dfad907270230c34cdc29cb65 | |
parent | e11fd65948ca552d7d22cc3fa56d4c23d04d3198 (diff) |
release: version 0.0.9-2
-rw-r--r-- | docker/api/Dockerfile | 2 | ||||
-rw-r--r-- | docker/ui/Dockerfile | 2 | ||||
-rwxr-xr-x | release.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docker/api/Dockerfile b/docker/api/Dockerfile index 06dd615..4484408 100644 --- a/docker/api/Dockerfile +++ b/docker/api/Dockerfile @@ -12,7 +12,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build cmd/api/main.go # Run the exe file FROM scratch -LABEL version="0.0.9-1" +LABEL version="0.0.9-2" WORKDIR /app COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt diff --git a/docker/ui/Dockerfile b/docker/ui/Dockerfile index 014289e..2e6cef4 100644 --- a/docker/ui/Dockerfile +++ b/docker/ui/Dockerfile @@ -14,7 +14,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o rahanna-ui cmd/ui/main.go # Run stage FROM alpine:latest -LABEL version="0.0.9-1" +LABEL version="0.0.9-2" WORKDIR /app COPY --from=builder /app/rahanna-ui . @@ -9,4 +9,4 @@ sed -i "15s/.*/LABEL version=\"$1\"/" docker/api/Dockerfile sed -i "17s/.*/LABEL version=\"$1\"/" docker/ui/Dockerfile git add docker git commit -m "release: version $1" -git tag -a "v$1" -m "Version $1" +git tag -a "$1" -m "Version $1" |