Release v1.0.50
All checks were successful
Conditional Release Build / update-to-release-branch (push) Has been skipped
Conditional Release Build / debug-conditions (push) Successful in 5s
Conditional Release Build / create-release (push) Has been skipped
Conditional Release Build / create-docker-image (push) Has been skipped

This commit is contained in:
2025-07-28 18:58:33 +06:00
parent 1c2ae2dbce
commit 609c866c47

View File

@@ -23,7 +23,7 @@ jobs:
create-release:
runs-on: ubuntu-latest
if: env.BUILD_CREATE_RELEASE == 1
if: env.BUILD_CREATE_RELEASE == '1'
container:
image: ${{ secrets.DOCKERHUB_USERNAME }}/my-build-golang-runner:latest
steps:
@@ -120,7 +120,7 @@ jobs:
create-docker-image:
runs-on: ubuntu-latest
# needs: create-release
if: env.BUILD_CREATE_DOCKER_IMAGE == 1
if: env.BUILD_CREATE_DOCKER_IMAGE == '1'
container:
image: docker:28.3.2-dind
steps:
@@ -172,7 +172,7 @@ jobs:
update-to-release-branch:
runs-on: ubuntu-latest
# needs: create-docker-image
if: env.BUILD_UPDATE_RELEASE_BRANCH == 1
if: env.BUILD_UPDATE_RELEASE_BRANCH == '1'
container:
image: docker:28.3.2-dind
steps: