test push image in yandex cr

This commit is contained in:
Данил 2024-09-28 14:24:12 +03:00
parent 9e1b348491
commit aa9c79b478

View file

@ -9,8 +9,9 @@ on:
- published
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
REGISTRY: cr.yandex
IMAGE_NAME: starlio-web
REGISTRY_ID: ${{ secrets.YANDEX_REGISTRY_ID }}
jobs:
build-and-push-image:
@ -30,20 +31,20 @@ jobs:
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
username: oauth
password: ${{ secrets.YANDEX_OAUTH_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
images: ${{ env.REGISTRY }}/${{ env.REGISTRY_ID }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: ${{ env.REGISTRY }}/${{ env.REGISTRY_ID }}/${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.version }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64