Release v1.0.30
All checks were successful
Release Build / create-release (push) Successful in 6m30s
Release Build / create-docker-image (push) Successful in 3m41s
Release Build / update-to-release-branch (push) Successful in 8s

This commit is contained in:
2025-07-28 14:05:01 +06:00
parent c4a3ea4d98
commit bf643393ad
6 changed files with 183 additions and 209 deletions

View File

@@ -21,7 +21,7 @@ jobs:
- name: Setup Go
run: |
# Install jq for JSON parsing
apt-get update && apt-get install -y jq
# apt-get update && apt-get install -y jq
git --version
go version
jq --version
@@ -106,7 +106,7 @@ jobs:
docker --version
# Setup Docker Buildx for multi-platform builds
docker buildx create --use
docker buildx create --name go-buildx --use
docker buildx inspect --bootstrap
- name: Login to Docker Hub
@@ -123,6 +123,9 @@ jobs:
--tag ${{ secrets.DOCKERHUB_USERNAME }}/hello-api:latest \
--push \
.
- name: Remove buildx
run: |
docker buildx rm go-buildx
update-to-release-branch:
runs-on: ubuntu-latest