Skip to content

Commit 9062ef4

Browse files
committed
suffix
1 parent 54a5889 commit 9062ef4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build_backend.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ jobs:
5656
# generate Docker tags based on the following events/attributes
5757
tags: |
5858
# always latest
59-
type=raw,value=latest
59+
type=raw,value=latest,suffix=-${{ matrix.architecture.tag }}
6060
# branch event
61-
type=ref,event=branch
61+
type=ref,event=branch,suffix=-${{ matrix.architecture.tag }}
6262
# tag event
63-
type=ref,event=tag
63+
type=ref,event=tag,suffix=-${{ matrix.architecture.tag }}
6464
# pull request event
65-
type=ref,event=pr
65+
type=ref,event=pr,suffix=-${{ matrix.architecture.tag }}
6666
# push event
67-
type=sha,enable=true,prefix=git-,format=short
67+
type=sha,enable=true,prefix=git-,format=short,suffix=-${{ matrix.architecture.tag }}
6868
- uses: actions/checkout@v3 # Checking out the repo
6969
- name: Set up QEMU
7070
uses: docker/setup-qemu-action@v2
@@ -78,7 +78,7 @@ jobs:
7878
username: ${{ github.actor }}
7979
password: ${{ secrets.GITHUB_TOKEN }}
8080
- name: Build and push
81-
uses: docker/build-push-action@v3
81+
uses: docker/build-push-action@v5
8282
with:
8383
push: true
8484
build-args: CODERBOT_VERSION=${{github.ref_name}}-${{github.sha}}

0 commit comments

Comments
 (0)