Skip to content

Commit

Permalink
Add: push.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalholthaus committed Jun 20, 2024
1 parent e9a1b84 commit acacf23
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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:
uses: greenbone/workflows/.github/workflows/sensor-build-push.yml@pholthaus/sensor
with:
image-url: community/gsa
image-labels: |
org.opencontainers.image.vendor=Greenbone
org.opencontainers.image.base.name=greenbone/gsad
ref-name: ${{ inputs.ref-name }}
secrets: inherit

0 comments on commit acacf23

Please sign in to comment.