Skip to content

Merge pull request #106 from philips-labs/dependabot/docker/golang-1.… #128

Merge pull request #106 from philips-labs/dependabot/docker/golang-1.…

Merge pull request #106 from philips-labs/dependabot/docker/golang-1.… #128

Workflow file for this run

name: Publish container images
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
jobs:
containers:
name: Build and push container image registries
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
if: startsWith(github.ref, 'refs/tags/v') || github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
push: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}