chore: remove HTTP protocol from registry URL in deploy workflow
Some checks failed
Build (develop) / Promote (main) / build-and-push-deploy (push) Failing after 8m11s

This commit is contained in:
2026-02-12 16:06:16 -03:00
parent 18bbf6cd5e
commit e4de5af67a

View File

@@ -15,7 +15,7 @@ jobs:
- name: Build and Push
run: |
set -euo pipefail
REGISTRY="http://172.35.0.216:3000"
REGISTRY="172.35.0.216:3000"
IMAGE_NAME="$REGISTRY/simplifique/vendaweb-portal"
SHA_TAG=$(echo "${{ github.sha }}" | cut -c1-7)
@@ -45,7 +45,7 @@ jobs:
run: |
set -euo pipefail
SHA_TAG=$(echo "${{ github.sha }}" | cut -c1-7)
IMAGE_NAME="http://172.35.0.216:3000/simplifique/vendaweb-portal"
IMAGE_NAME="172.35.0.216:3000/simplifique/vendaweb-portal"
MANIFEST_FILE="k8s/overlays/prod/deployment-image-digest-patch.yaml"
@@ -56,7 +56,7 @@ jobs:
exit 1
fi
git remote set-url origin "https://${{ github.actor }}:${{ secrets.GITEA_TOKEN }}@http://172.35.0.216:3000/simplifique/Vendaweb-portal.git"
git remote set-url origin "https://${{ github.actor }}:${{ secrets.GITEA_TOKEN }}@172.35.0.216:3000/simplifique/Vendaweb-portal.git"
git config user.name "Gitea Action"
git config user.email "actions@simplifiquehc.com.br"