Release v1.0.33
Some checks failed
Release Build / create-release (push) Successful in 6m37s
Release Build / create-docker-image (push) Failing after 37s
Release Build / update-to-release-branch (push) Has been skipped

This commit is contained in:
2025-07-28 17:00:47 +06:00
parent da3538051e
commit 6f10caa69d
2 changed files with 3 additions and 4 deletions

View File

@@ -10,8 +10,7 @@ jobs:
container: container:
# image: golang:1.21 # image: golang:1.21
# image: ${{ secrets.DOCKERHUB_USERNAME }}/my-build-golang-runner:builder-1.0.32 # image: ${{ secrets.DOCKERHUB_USERNAME }}/my-build-golang-runner:builder-1.0.32
image: ${{ secrets.DOCKERHUB_USERNAME }}/my-build-golang-runner:latest image: ${{ secrets.DOCKERHUB_USERNAME }}/my-build-golang-runner:latest
options: --pull
steps: steps:
- name: Checkout repository - name: Checkout repository
run: | run: |

View File

@@ -36,8 +36,8 @@ get_version_interactive() {
echo "📝 Подтверждение:" echo "📝 Подтверждение:"
echo " Текущая версия: $CURRENT_VERSION" echo " Текущая версия: $CURRENT_VERSION"
echo " Новая версия: $VERSION" echo " Новая версия: $VERSION"
if [ $CURRENT_VERSION == $VERSION ]; then if [ "$CURRENT_VERSION" == "$VERSION" ]; then
echo "⚠️ Новая версия совпадает с текущей. Возможно будет обновлен тег ..." echo "⚠️ Новая версия совпадает с текущей. Возможно будет обновлен тег ..."
fi fi
echo "" echo ""
read -r -p "Продолжить? (y/N): " CONFIRM read -r -p "Продолжить? (y/N): " CONFIRM