Skip to content

Merge branch 'deployment-status-dashboard' into qos-dashboard #8

Merge branch 'deployment-status-dashboard' into qos-dashboard

Merge branch 'deployment-status-dashboard' into qos-dashboard #8

Workflow file for this run

name: Build and Publish Docker Image
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches: [master]
jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/vincenttaglia/indexer-tools
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{steps.docker_meta.outputs.tags}}
labels: ${{steps.docker_meta.outputs.labels}}