Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix repository in docker push action #1297

Merged
merged 1 commit into from
Oct 31, 2024
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: 2 additions & 6 deletions .github/workflows/publish_dockerhub_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,8 @@ jobs:
uses: mariomac/shared-workflows/actions/build-push-to-dockerhub@skip-qemu
with:
skip-qemu: true
repository: grafana/beyla
context: .
# cache image layers from/to github actions internal cache, for faster building
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: |-
"linux/amd64"
"linux/arm64"
Expand All @@ -36,11 +34,9 @@ jobs:
uses: mariomac/shared-workflows/actions/build-push-to-dockerhub@skip-qemu
with:
skip-qemu: true
repository: grafana/beyla-k8s-cache
file: k8scache.Dockerfile
context: .
# cache image layers from/to github actions internal cache, for faster building
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: |-
"linux/amd64"
"linux/arm64"
Expand Down
Loading