Skip to content

Merge branch 'main' into AuditLogReceiver #18

Merge branch 'main' into AuditLogReceiver

Merge branch 'main' into AuditLogReceiver #18

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches: [ AuditLogReceiver ]
tags: [ 'v*' ]
pull_request:
branches: [ AuditLogReceiver ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/otelcontribcol-auditlog
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Linux binary
run: |
GOOS=linux GOARCH=amd64 make otelcontribcol
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max