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
5 changes: 5 additions & 0 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Build to TAR
id: build_tar
Expand All @@ -187,6 +189,9 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
outputs: |
type=docker,dest=./operator.tar
# Workaround to "disable" cache from registry
cache-from: type=local,src=${{ runner.temp }}/.buildx-cache
cache-to: type=local,dest=${{ runner.temp }}/.buildx-cache-new,mode=min

- name: Upload Operator artifact
uses: actions/upload-artifact@v4
Expand Down
Loading