Arrange inputs for workflow calls #607
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: Build & Push Container Images | |
on: | |
push: | |
branches: [ main ] | |
tags: ["v*"] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
inputs: | |
ref-name: | |
type: string | |
description: "The ref to build a container image from. For example a tag v23.0.0." | |
required: true | |
jobs: | |
build-push-debian-stable-container: | |
name: Build and Push debian:stable to Greenbone Registry | |
uses: greenbone/workflows/.github/workflows/container-build-push-2nd-gen.yml@main | |
with: | |
base-image-label: "stable" | |
build-docker-file: .docker/prod.Dockerfile | |
image-url: community/gvm-libs | |
image-labels: | | |
org.opencontainers.image.vendor=Greenbone | |
org.opencontainers.image.base.name=debian:stable-slim | |
ref-name: ${{ inputs.ref-name }} | |
secrets: inherit | |
build-push-debian-oldstable-container: | |
name: Build and Push debian:oldstable to Greenbone Registry | |
uses: greenbone/workflows/.github/workflows/container-build-push-2nd-gen.yml@main | |
with: | |
base-image-label: "oldstable" | |
build-docker-file: .docker/prod-oldstable.Dockerfile | |
image-url: community/gvm-libs | |
image-labels: | | |
org.opencontainers.image.vendor=Greenbone | |
org.opencontainers.image.base.name=debian:oldstable-slim | |
ref-name: ${{ inputs.ref-name }} | |
secrets: inherit | |
build-push-debian-testing-container: | |
name: Build and Push debian:testing to Greenbone Registry | |
uses: greenbone/workflows/.github/workflows/container-build-push-2nd-gen.yml@main | |
with: | |
base-image-label: "testing" | |
build-docker-file: .docker/prod-testing.Dockerfile | |
image-url: community/gvm-libs | |
image-labels: | | |
org.opencontainers.image.vendor=Greenbone | |
org.opencontainers.image.base.name=debian:testing-slim | |
ref-name: ${{ inputs.ref-name }} | |
secrets: inherit | |
# triggers projects that work with stable branches on a new stable tag | |
trigger-stable-projects: | |
needs: build-push-debian-stable-container | |
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v') | |
name: Trigger update container images in related projects for new tags | |
strategy: | |
fail-fast: false | |
matrix: | |
repository: ["greenbone/gvmd", "greenbone/gsad"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger ${{ matrix.repository }} build container image build | |
uses: greenbone/actions/trigger-workflow@v3 | |
with: | |
token: ${{ secrets.GREENBONE_BOT_TOKEN }} | |
repository: ${{ matrix.repository }} | |
workflow: build-container.yml | |
ref: main | |
- name: Trigger ${{ matrix.repository }} container image build | |
uses: greenbone/actions/trigger-workflow@v3 | |
with: | |
token: ${{ secrets.GREENBONE_BOT_TOKEN }} | |
repository: ${{ matrix.repository }} | |
workflow: container.yml | |
ref: main |