Skip to content

Commit

Permalink
[CI] Fix build-release workflow
Browse files Browse the repository at this point in the history
- Typo in path
- Missing QEMU binaries for cross-platform build
  • Loading branch information
Zerpet committed Sep 2, 2024
1 parent 9f8afb8 commit 008ed9f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: operator-manifests
path: release/
path: releases/
- name: Rename manifest for GCS
run: mv releases/cluster-operator.yml cluster-operator-${{ env.image_version }}.yml

Expand Down Expand Up @@ -305,6 +305,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit 008ed9f

Please sign in to comment.