Skip to content

improve jenkins generation #145

improve jenkins generation

improve jenkins generation #145

Workflow file for this run

name: create and push docker images
on:
workflow_dispatch:
pull_request:
push:
branches:
- develop
paths-ignore:
- "README.md"
- ".github/workflows/python-**.yaml"
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
permissions:
contents: read
packages: write
jobs:
build-and-push-image:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- dockerfile: ./docker/cli/Dockerfile-slim
image: ghcr.io/${{ github.repository }}/cli
- dockerfile: ./docker/worker/Dockerfile
image: ghcr.io/${{ github.repository }}/worker
- dockerfile: ./docker/bamboo-generator/Dockerfile
image: ghcr.io/${{ github.repository }}/bamboo-generator
- dockerfile: ./docker/api/Dockerfile-slim
image: ghcr.io/${{ github.repository }}/api
- dockerfile: ./docker/playground/Dockerfile
image: ghcr.io/${{ github.repository }}/playground
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ matrix.image }}
tags: |
# set latest tag for default branch
type=raw,value={{date 'YYYYMMDD-hhmmss' tz='Europe/Berlin'}}
type=ref,event=pr
type=sha
type=raw,value=nightly,enable={{is_default_branch}}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ${{ matrix.dockerfile }}
platforms: linux/amd64,linux/arm64
push: ${{ github.ref_name == 'develop' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}