-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add: Push to self-hosted registry workflow for image
- Loading branch information
1 parent
734973f
commit 8f4b98d
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
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: | ||
push: | ||
name: Build and push to self-hosted harbor | ||
uses: greenbone/workflows/.github/workflows/container-build-push-2nd-gen.yml@main | ||
with: | ||
image-labels: | | ||
org.opencontainers.image.vendor=Greenbone | ||
org.opencontainers.image.documentation=https://greenbone.github.io/docs/ | ||
org.opencontainers.image.base.name=debian:stable-slim | ||
image-url: community/greenbone-feed-sync | ||
ref-name: ${{ inputs.ref-name }} | ||
secrets: inherit |