Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ jobs:
platforms: linux/amd64,linux/arm64
file: dockerfiles/dnf/Dockerfile
push: true
tags: ghcr.io/openchami/image-build:${{ steps.set_tag.outputs.tag }}
tags:
- ghcr.io/openchami/image-build:${{ steps.set_tag.outputs.tag }}
- ghcr.io/openchami/image-build:latest

- name: Build and push Docker image (EL9)
# Only run this step if a valid tag is computed
Expand All @@ -80,7 +82,9 @@ jobs:
platforms: linux/amd64,linux/arm64
file: dockerfiles/dnf/Dockerfile.el9
push: true
tags: ghcr.io/openchami/image-build-el9:${{ steps.set_tag.outputs.tag }}
tags:
- ghcr.io/openchami/image-build-el9:${{ steps.set_tag.outputs.tag }}
- ghcr.io/openchami/image-build-el9:latest

- name: Generate release notes
# Only run this step if version was computed from tag
Expand Down