diff --git a/.github/workflows/publish-ghcr-pro.yml b/.github/workflows/publish-ghcr-pro.yml new file mode 100644 index 0000000..0ec65d6 --- /dev/null +++ b/.github/workflows/publish-ghcr-pro.yml @@ -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