fix(ci): consolidate crane steps and use password-stdin
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Successful in 2m13s
CI/CD Pipeline / Run Tests (push) Successful in 2m17s
CI/CD Pipeline / Build Docker Images (push) Successful in 2s
CI/CD Pipeline / Push to Gitea Registry (push) Failing after 7s

This commit is contained in:
2026-02-02 14:07:58 +01:00
parent 04d9e6bf40
commit 223e6e40fb

View File

@@ -121,7 +121,7 @@ jobs:
git clone --depth=1 --branch=${GITHUB_REF_NAME} ${REPO_URL}/${GITHUB_REPOSITORY}.git . git clone --depth=1 --branch=${GITHUB_REF_NAME} ${REPO_URL}/${GITHUB_REPOSITORY}.git .
git checkout ${GITHUB_SHA} git checkout ${GITHUB_SHA}
- name: Install crane and build images - name: Build and push images
run: | run: |
# Install crane for pushing to Gitea container registry # Install crane for pushing to Gitea container registry
curl -sL https://github.com/google/go-containerregistry/releases/download/v0.19.0/go-containerregistry_Linux_x86_64.tar.gz | tar xz crane curl -sL https://github.com/google/go-containerregistry/releases/download/v0.19.0/go-containerregistry_Linux_x86_64.tar.gz | tar xz crane
@@ -129,13 +129,15 @@ jobs:
BRANCH_TAG=$(echo ${GITHUB_REF_NAME} | sed 's/\//-/g') BRANCH_TAG=$(echo ${GITHUB_REF_NAME} | sed 's/\//-/g')
SHA_SHORT=$(echo ${GITHUB_SHA} | cut -c1-7) SHA_SHORT=$(echo ${GITHUB_SHA} | cut -c1-7)
# Gitea redirects auth to domain name, so use it everywhere
REGISTRY_HOST="git.dev.nii-ecos.ru" REGISTRY_HOST="git.dev.nii-ecos.ru"
REGISTRY="${REGISTRY_HOST}/${{ github.repository_owner }}" REGISTRY="${REGISTRY_HOST}/${{ github.repository_owner }}"
# Login to Gitea container registry (--insecure for self-signed cert) # Debug
./crane auth login --insecure ${REGISTRY_HOST} -u ${{ gitea.actor }} -p ${{ gitea.token }} echo "Registry: ${REGISTRY_HOST}"
echo "Actor: ${GITHUB_ACTOR}"
# Login to Gitea container registry
echo "${REGISTRY_PASSWORD}" | ./crane auth login --insecure ${REGISTRY_HOST} -u "${GITHUB_ACTOR}" --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 .
@@ -158,6 +160,8 @@ jobs:
if [ "${GITHUB_REF_NAME}" = "main" ]; then if [ "${GITHUB_REF_NAME}" = "main" ]; then
./crane push --insecure /tmp/celery.tar ${REGISTRY}/mostovik-celery:latest ./crane push --insecure /tmp/celery.tar ${REGISTRY}/mostovik-celery:latest
fi fi
env:
REGISTRY_PASSWORD: ${{ gitea.token }}
- name: Image summary - name: Image summary
run: | run: |