Skip to content

feat(tap-agent)!: overhaul config mgmt (#180) #268

feat(tap-agent)!: overhaul config mgmt (#180)

feat(tap-agent)!: overhaul config mgmt (#180) #268

Workflow file for this run

name: Build and upload Docker image
on:
push:
tags:
- "*.*.*"
branches:
- main
pull_request:
branches:
- main
env:
REGISTRY: ghcr.io/${{ github.repository_owner }}
jobs:
builds-linux:
runs-on: ubuntu-latest
strategy:
matrix:
target: [indexer-service-rs, indexer-tap-agent]
permissions:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
# list of Docker images to use as base name for tags
images: |
${{ env.REGISTRY }}/${{matrix.target}}
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}.{{minor}}.{{patch}}
type=semver,pattern={{major}}
type=sha
- name: Log in to the Container registry
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ./
push: true
tags: ${{ steps.meta.outputs.tags }}
file: Dockerfile.${{ matrix.target }}