Skip to content

Change total item per DB panel unit to short (#955) #23

Change total item per DB panel unit to short (#955)

Change total item per DB panel unit to short (#955) #23

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release-binaries:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build binaries
run: |
make build-all-binaries
ls -la
ls -la .build/
./package-github-binaries.sh
ls -la dist/
- name: Add binaries to release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"
allowUpdates: true
omitBodyDuringUpdate: true
docker-push-scratch-image-docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
oliver006/redis_exporter
ghcr.io/oliver006/redis_exporter
quay.io/oliver006/redis_exporter
- name: Build and push scratch image
uses: docker/build-push-action@v6
with:
context: .
target: scratch-release
platforms: linux/amd64,linux/arm,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: "TAG=${{ github.ref_name }},SHA1=${{ github.sha }}"
- name: Build and push alpine image
uses: docker/build-push-action@v6
with:
context: .
target: alpine
platforms: linux/amd64,linux/arm,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }},alpine
labels: ${{ steps.meta.outputs.labels }}
build-args: "TAG=${{ github.ref_name }},SHA1=${{ github.sha }}"