From 6cc4b491c3dbfcedae2e8885d836488e4baa91ff Mon Sep 17 00:00:00 2001 From: Pascal Holthaus Date: Wed, 26 Jun 2024 11:05:45 +0200 Subject: [PATCH] Add: push.yml --- .github/workflows/push.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/push.yml diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 00000000..d72b9d88 --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,28 @@ +name: Build and Push to Greenbone Registry + +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: + name: Build and Push to Greenbone Registry + uses: greenbone/workflows/.github/workflows/container-build-push-2nd-gen.yml@main + with: + build-docker-file: .docker/Dockerfile + image-url: community/gvm-tools + image-labels: | + org.opencontainers.image.vendor=Greenbone + org.opencontainers.image.documentation=https://greenbone.github.io/gvm-tools/ + org.opencontainers.image.base.name=debian/stable-slim + ref-name: ${{ inputs.ref-name }} + secrets: inherit