ci: publish Docker image to GHCR on version tags

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Андрей Бобырев
2026-05-14 23:24:40 +03:00
parent 74163944c2
commit ce63b8b0be

37
.github/workflows/publish-ghcr-pro.yml vendored Normal file
View File

@@ -0,0 +1,37 @@
# Сборка приватного образа 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