Skip to content

Add Indexing latency metrics (#6) #5

Add Indexing latency metrics (#6)

Add Indexing latency metrics (#6) #5

Workflow file for this run

name: Build and Push Docker Image to GitHub Container Registry
on:
push:
tags:
- 'v*'
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ./build/Dockerfile
tags: |
ghcr.io/maxitosh/ton-node-exporter:${{ github.ref_name }}
ghcr.io/maxitosh/ton-node-exporter:latest
push: true
labels: |
org.opencontainers.image.source=${{ github.repository }}
org.opencontainers.image.description="A Prometheus exporter for TON Node"