Update deploy.yml
Some checks failed
ci / Lint & typecheck (push) Successful in 29s
ci / Unit tests (push) Successful in 1m8s
deploy / build-and-deploy (push) Failing after 4m14s

This commit is contained in:
febux 2026-09-14 01:44:20 +03:00
parent eabad0d27c
commit a3e88cc79e

View file

@ -42,7 +42,11 @@ jobs:
git checkout -q FETCH_HEAD git checkout -q FETCH_HEAD
- name: Registry login - name: Registry login
run: printf '%s\n' "${{ secrets.REGISTRY_TOKEN }}" | docker login "$REGISTRY_HOST" -u "$REGISTRY_OWNER" --password-stdin env:
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
run: |
[ -n "$REGISTRY_TOKEN" ] || { echo "REGISTRY_TOKEN secret is empty"; exit 1; }
docker login "$REGISTRY_HOST" -u "$REGISTRY_OWNER" -p "$REGISTRY_TOKEN"
- name: Build & push images (SHA tag) - name: Build & push images (SHA tag)
run: | run: |