Skip to content

Commit f909fe7

Browse files
committed
Fix publish-helm, add arm64 image
1 parent 601c1fb commit f909fe7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/container-registry-ghcr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ jobs:
5151
with:
5252
context: .
5353
labels: ${{ steps.meta.outputs.labels }}
54-
platforms: linux/amd64
54+
platforms: linux/amd64,linux/arm64
5555
push: true
5656
tags: ${{ steps.meta.outputs.tags }}

.github/workflows/publish-helm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
run: |
3838
CHART_NAME=openstack-hypervisor-operator
3939
CHART_VERSION=$(grep "version:" ./charts/${CHART_NAME}/Chart.yaml | awk '{print $2}')
40-
helm push "${CHART_NAME}-${CHART_VERSION}.tgz" "oci://ghcr.io/${{ github.repository_owner }}/${CHART_NAME}"
40+
helm push "${CHART_NAME}-${CHART_VERSION}tgz" "oci://ghcr.io/${{ github.repository_owner }}"

Makefile.maker.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,13 @@ githubWorkflow:
3535
queries: security-extended
3636
pushContainerToGhcr:
3737
enabled: true
38+
platforms: "linux/amd64,linux/arm64"
3839
tagStrategy:
3940
- edge
4041
- latest
4142
- semver
43+
license:
44+
enabled: true
4245

4346
metadata:
4447
url: https://github.com/cobaltcore-dev/openstack-hypervisor-operator

0 commit comments

Comments
 (0)