diff --git a/.github/workflows/logql-analyzer.yml b/.github/workflows/logql-analyzer.yml index 14019e129e69..f0e3df978251 100644 --- a/.github/workflows/logql-analyzer.yml +++ b/.github/workflows/logql-analyzer.yml @@ -61,18 +61,17 @@ jobs: timeout-minutes: "${{ fromJSON(env.BUILD_TIMEOUT) }}" uses: "docker/build-push-action@v6" with: - build-args: "IMAGE_TAG=${RELEASE_VERSION}" + build-args: "IMAGE_TAG=${{ steps.prepare.outputs.release_version }}" file: "cmd/logql-analyzer/Dockerfile" platforms: "linux/amd64" push: true - tags: "${{ env.IMAGE_PREFIX }}/logql-analyzer:${RELEASE_VERSION}" + tags: "grafana/logql-analyzer:${{ steps.prepare.outputs.release_version }}" - name: Log in to Google Artifact Registry uses: grafana/shared-workflows/actions/login-to-gar@main with: environment: "prod" - - name: Update to latest image env: GITHUB_TOKEN: ${{ steps.get-github-app-token.outputs.token }}