2023-11-06 16:50:12 +00:00
|
|
|
name: Publishing Charts
|
|
|
|
run-name: Publishing Helm Charts to the Teapot Registry
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- "charts/**"
|
|
|
|
jobs:
|
2023-11-09 09:12:57 +00:00
|
|
|
Publilsh-Charts:
|
2023-11-25 12:40:20 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2023-11-06 16:50:12 +00:00
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Push Helm Chart to Gitea Registry
|
|
|
|
uses: bsord/helm-push@v4.1.0
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
password: ${{ secrets.PUBLIC_PACKAGE_WRITE }}
|
|
|
|
registry-url: 'https://teapot.octopusx.de/api/packages/octocloudlab/helm'
|
|
|
|
force: true
|
2023-11-09 09:12:57 +00:00
|
|
|
chart-folder: charts/refact
|
|
|
|
- name: Push Helm Chart to Gitea Registry
|
|
|
|
uses: bsord/helm-push@v4.1.0
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
password: ${{ secrets.PUBLIC_PACKAGE_WRITE }}
|
|
|
|
registry-url: 'https://teapot.octopusx.de/api/packages/octocloudlab/helm'
|
|
|
|
force: true
|
|
|
|
chart-folder: charts/linkwarden
|