Skip to content

Commit

Permalink
Fix docker workflow (#4518)
Browse files Browse the repository at this point in the history
  • Loading branch information
carles-grafana authored Jan 7, 2025
1 parent b08688e commit f0c416f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docker-ci-tools.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: docker-ci-tools
on:
push:
# If you define both branches/branches-ignore and paths/paths-ignore, the workflow will only run when both filters are satisfied.
branches:
- 'main'
paths:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: docker-ci-tools
name: docker
on:
push:
branches:
Expand Down Expand Up @@ -61,13 +61,15 @@ jobs:

- name: docker-push
run: |
docker push grafana/${{ matrix.component }}:$TAG_ARCH
TAG_ARCH="$TAG-${{ matrix.runner_arch.arch }}"
docker push grafana/${{ matrix.component }}:$TAG_ARCH
cd-to-dev-env:
# This job deploys the latest main commit to the dev environment
if: github.repository == 'grafana/tempo' && github.ref == 'refs/heads/main'
runs-on: ubuntu-24.04
needs: docker
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit f0c416f

Please sign in to comment.