ci(actions): individual tagging policy fo db images

This commit is contained in:
Alexander Minkin 2024-11-04 13:01:01 +03:00
parent fdc6d95baa
commit fc15e2c155
Signed by untrusted user: WerySkok
GPG key ID: 88E9A2F3AFE44C30

View file

@ -48,14 +48,11 @@ jobs:
images: | images: |
ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/${{env.DB_IMAGE_NAME}} ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/${{env.DB_IMAGE_NAME}}
tags: | tags: |
type=sha type=sha,prefix=${{env.DB_VERSION}}-primary-
type=ref,event=branch type=ref,event=branch,prefix=${{env.DB_VERSION}}-primary-
type=ref,event=pr type=ref,event=pr,prefix=${{env.DB_VERSION}}-primary-
type=ref,event=tag type=ref,event=tag,prefix=${{env.DB_VERSION}}-primary-
type=raw,value=,enable={{is_default_branch}} type=raw,value=${{env.DB_VERSION}}-primary,enable={{is_default_branch}}
flavor: |
latest=auto
prefix=${{env.DB_VERSION}}-primary
- name: MariaDB event meta - name: MariaDB event meta
id: db-eventmeta id: db-eventmeta
@ -64,14 +61,11 @@ jobs:
images: | images: |
ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/${{env.DB_IMAGE_NAME}} ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/${{env.DB_IMAGE_NAME}}
tags: | tags: |
type=sha type=sha,prefix=${{env.DB_VERSION}}-eventdb-
type=ref,event=branch type=ref,event=branch,prefix=${{env.DB_VERSION}}-eventdb-
type=ref,event=pr type=ref,event=pr,prefix=${{env.DB_VERSION}}-eventdb-
type=ref,event=tag type=ref,event=tag,prefix=${{env.DB_VERSION}}-eventdb-
type=raw,value=,enable={{is_default_branch}} type=raw,value=${{env.DB_VERSION}}-eventdb,enable={{is_default_branch}}
flavor: |
latest=auto
prefix=${{env.DB_VERSION}}-eventdb-
# - name: Log into registry # - name: Log into registry
# run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin # run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin