build(deps): bump github.com/prometheus/common from 0.55.0 to 0.59.1 #52
Workflow file for this run
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
name: "build-and-push" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Generate Tags | |
run: | | |
bash scripts/generate-tags.sh > .tag | |
echo "DOCKER_TAG=$(cat .tag)" >> $GITHUB_ENV | |
- name: Build And Push | |
uses: grafana/shared-workflows/actions/push-to-gar-docker@main | |
with: | |
push: true | |
# If we are building main, push to prod and add the 'latest' tag. | |
tags: |- | |
${{ env.DOCKER_TAG }} | |
type=raw,value=latest,enable=${{ github.ref_name == 'main' }} | |
context: "." | |
image_name: "influx2cortex" | |
environment: "${{ github.ref_name == 'main' && 'prod' || 'dev' }}" |