Skip to content

add mimir support

add mimir support #18

Workflow file for this run

name: CI
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: sepa/thanos-kit
tags: |
type=raw,value={{date 'YYMMDD'}}
type=raw,value={{branch}}-{{sha}}
flavor: |
latest=true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: sepa
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |

Check failure on line 42 in .github/workflows/docker.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/docker.yml (Line: 42, Col: 23): Unrecognized named-value: 'DOCKER_METADATA_OUTPUT_VERSION'. Located at position 1 within expression: DOCKER_METADATA_OUTPUT_VERSION
VER=${{ DOCKER_METADATA_OUTPUT_VERSION }}
cache-from: type=gha
cache-to: type=gha,mode=max