File: push-helm-chart.yml

package info (click to toggle)
openvas-scanner 23.40.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 22,692 kB
  • sloc: ansic: 41,669; xml: 6,251; pascal: 3,723; yacc: 1,287; sh: 1,101; makefile: 333; sql: 282; javascript: 12
file content (27 lines) | stat: -rw-r--r-- 557 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: "Helm Push"

on: 
  workflow_call:
    inputs:
      registry:
        required: true
        type: string
    secrets:
      user:
        required: true
      token:
        required: true


jobs:
  helm:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: greenbone/actions/helm-build-push@v3
        with:
          chart-name: openvasd
          registry: ${{ inputs.registry }}
          registry-subpath: helm-charts/
          registry-user: ${{ secrets.user }}
          registry-token: ${{ secrets.token }}