dev #9

Merged
avm merged 100 commits from dev into main 2026-03-17 16:06:44 +03:00
Showing only changes of commit 2555153994 - Show all commits

View File

@@ -136,8 +136,8 @@ jobs:
echo "Registry: ${REGISTRY_HOST}" echo "Registry: ${REGISTRY_HOST}"
echo "Actor: ${GITHUB_ACTOR}" echo "Actor: ${GITHUB_ACTOR}"
# Login to Gitea container registry # Login to Gitea container registry (requires REGISTRY_TOKEN secret with write:package scope)
echo "${REGISTRY_PASSWORD}" | ./crane auth login --insecure ${REGISTRY_HOST} -u "${GITHUB_ACTOR}" --password-stdin echo "${REGISTRY_PASSWORD}" | ./crane auth login --insecure ${REGISTRY_HOST} -u "${REGISTRY_USER}" --password-stdin
# Build and push web image # Build and push web image
docker build -f ./docker/Dockerfile.web -t mostovik-web:local . docker build -f ./docker/Dockerfile.web -t mostovik-web:local .
@@ -161,7 +161,8 @@ jobs:
./crane push --insecure /tmp/celery.tar ${REGISTRY}/mostovik-celery:latest ./crane push --insecure /tmp/celery.tar ${REGISTRY}/mostovik-celery:latest
fi fi
env: env:
REGISTRY_PASSWORD: ${{ gitea.token }} REGISTRY_USER: ${{ secrets.REGISTRY_USER }}
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_TOKEN }}
- name: Image summary - name: Image summary
run: | run: |