release v1.1.0

This commit is contained in:
2025-08-11 13:06:14 +06:00
parent cc242e1192
commit 2dd08831fd
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ FROM --platform=${BUILDPLATFORM} golang:1.24.6-alpine3.22 AS builder
ARG TARGETARCH
RUN apk add git
# RUN apk add git
#&& go install mvdan.cc/garble@latest
WORKDIR /app

View File

@@ -16,7 +16,7 @@ export GOCACHE="${HOME}/.cache/go-build"
CURRENT_BRANCH=$(git branch --show-current)
# Function to restore the original branch
function restore_branch {
restore_branch() {
echo "Restoring original branch: ${CURRENT_BRANCH}"
git checkout "${CURRENT_BRANCH}"
}