Skip to content

Commit b1b87c3

Browse files
authored
Update build-push-image-from-main.yml
Cleaner tags specification Signed-off-by: Claudia Misale <[email protected]>
1 parent 51578a6 commit b1b87c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-push-image-from-main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
uses: docker/metadata-action@v5
2626
with:
2727
images: quay.io/autopilot/autopilot
28+
tags: latest
2829

2930
- name: Log into registry
30-
if: github.event_name != 'pull_request'
3131
uses: docker/login-action@v3
3232
with:
3333
registry: quay.io
@@ -38,5 +38,5 @@ jobs:
3838
uses: docker/build-push-action@v5
3939
with:
4040
context: autopilot-daemon
41-
push: ${{ github.event_name != 'pull_request' }}
42-
tags: "latest"
41+
push: true
42+
tags: ${{ steps.meta.outputs.tags }}

0 commit comments

Comments
 (0)