Rename svc.ID to svc.Attrs (#1393) #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TODO: trigger only if testing or any other checks previously succeeded | |
name: Push to DockerHub (main) | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
build-multiarch: | |
runs-on: ubuntu-latest-8-cores | |
steps: | |
- id: checkout | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- id: push-beyla-to-dockerhub | |
uses: grafana/shared-workflows/actions/build-push-to-dockerhub@main | |
with: | |
repository: grafana/beyla | |
context: . | |
platforms: |- | |
"linux/amd64" | |
"linux/arm64" | |
tags: |- | |
"main" | |
push: true | |
- id: push-beyla-k8s-cache-to-dockerhub | |
uses: grafana/shared-workflows/actions/build-push-to-dockerhub@main | |
with: | |
repository: grafana/beyla-k8s-cache | |
file: k8scache.Dockerfile | |
context: . | |
platforms: |- | |
"linux/amd64" | |
"linux/arm64" | |
tags: |- | |
"main" | |
push: true |