Deps: Bump the python-packages group with 5 updates (#36) #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Container Image Builds | |
on: | |
push: | |
branches: [ main ] | |
tags: ["v*"] | |
workflow_dispatch: | |
jobs: | |
images: | |
name: Build images | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ vars.IMAGE_REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup container meta information | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ vars.IMAGE_REGISTRY }}/${{ github.repository }} | |
labels: | | |
org.opencontainers.image.vendor=Greenbone | |
org.opencontainers.image.base.name=debian:stable-slim | |
tags: | | |
# create container tag for git tags | |
type=ref,event=tag | |
# set edge for default branch | |
type=edge | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push Container image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: ${{ github.event_name != 'pull_request' }} | |
file: docker/Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |