Files
amnezia_web-PRO/.github/workflows/publish-ghcr-pro.yml
Андрей Бобырев ce63b8b0be ci: publish Docker image to GHCR on version tags
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-14 23:24:40 +03:00

38 lines
896 B
YAML

# Сборка приватного образа Pro и публикация в GHCR при push git-тега v* (например v1.0.0).
name: Publish Pro image to GHCR
on:
push:
tags:
- "v*"
permissions:
contents: read
packages: write
env:
REGISTRY_IMAGE: ghcr.io/${{ github.repository_owner }}/amnezia-admin-pro
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
${{ env.REGISTRY_IMAGE }}:${{ github.ref_name }}
${{ env.REGISTRY_IMAGE }}:latest