mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-10 20:05:38 +02:00
ci: fix missing version tag in build
This commit is contained in:
parent
4baf4ef3f0
commit
2297de68f0
1 changed files with 4 additions and 6 deletions
10
.github/workflows/docker-publish.yml
vendored
10
.github/workflows/docker-publish.yml
vendored
|
@ -2,8 +2,6 @@ name: Docker Publish
|
|||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
|
@ -41,9 +39,9 @@ jobs:
|
|||
with:
|
||||
images: ghcr.io/${{ github.repository_owner }}/rybbit-backend
|
||||
tags: |
|
||||
type=ref,event=branch
|
||||
type=raw,value=${{ github.ref_name }}
|
||||
type=raw,value=latest
|
||||
type=sha
|
||||
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
|
||||
|
||||
- name: Build and push Backend Docker image (multi-arch)
|
||||
uses: docker/build-push-action@v6
|
||||
|
@ -64,9 +62,9 @@ jobs:
|
|||
with:
|
||||
images: ghcr.io/${{ github.repository_owner }}/rybbit-client
|
||||
tags: |
|
||||
type=ref,event=branch
|
||||
type=raw,value=${{ github.ref_name }}
|
||||
type=raw,value=latest
|
||||
type=sha
|
||||
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
|
||||
|
||||
- name: Build and push Client Docker image (multi-arch)
|
||||
uses: docker/build-push-action@v6
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue