update workflows

This commit is contained in:
2025-03-14 14:34:07 -05:00
parent 01d96d9a25
commit 53f37bc75a
4 changed files with 135 additions and 38 deletions

View File

@@ -0,0 +1,45 @@
name: release-charts-cloudflared
on:
push:
branches:
- main
paths:
- "charts/cloudflared"
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Helm
uses: azure/setup-helm@v3
with:
token: ${{ secrets.GITEA_TOKEN }}
version: latest
id: install
- name: Package Helm Chart
run: |
cd charts/cloudflared
echo "PACKAGE_PATH=$(helm package . | awk '{print $NF}')" >> $GITEA_ENV
- name: Publish Helm Chart to Harbor
run: |
helm registry login ${{ vars.REGISTRY_HOST }} -u ${{ vars.REGISTRY_USER }} -p ${{ secrets.REGISTRY_SECRET }}
helm push ${{ env.PACKAGE_PATH }} oci://${{ vars.REGISTRY_HOST }}/${{ vars.REGISTRY_USER }}
- name: Publish Helm Chart to Gitea
run: |
helm registry login ${{ vars.REPOSITORY_HOST }} -u ${{ github.actor }} -p ${{ secrets.REPOSITORY_TOKEN }}
helm push ${{ env.PACKAGE_PATH }} oci://${{ vars.REPOSITORY_HOST }}/${{ github.actor }}
- name: Release Helm Chart
uses: akkuman/gitea-release-action@v1
with:
files: |-
${{ env.PACKAGE_PATH }}

View File

@@ -0,0 +1,45 @@
name: release-charts-generic-device-plugin
on:
push:
branches:
- main
paths:
- "charts/generic-device-plugin"
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Helm
uses: azure/setup-helm@v3
with:
token: ${{ secrets.GITEA_TOKEN }}
version: latest
id: install
- name: Package Helm Chart
run: |
cd charts/generic-device-plugin
echo "PACKAGE_PATH=$(helm package . | awk '{print $NF}')" >> $GITEA_ENV
- name: Publish Helm Chart to Harbor
run: |
helm registry login ${{ vars.REGISTRY_HOST }} -u ${{ vars.REGISTRY_USER }} -p ${{ secrets.REGISTRY_SECRET }}
helm push ${{ env.PACKAGE_PATH }} oci://${{ vars.REGISTRY_HOST }}/${{ vars.REGISTRY_USER }}
- name: Publish Helm Chart to Gitea
run: |
helm registry login ${{ vars.REPOSITORY_HOST }} -u ${{ github.actor }} -p ${{ secrets.REPOSITORY_TOKEN }}
helm push ${{ env.PACKAGE_PATH }} oci://${{ vars.REPOSITORY_HOST }}/${{ github.actor }}
- name: Release Helm Chart
uses: akkuman/gitea-release-action@v1
with:
files: |-
${{ env.PACKAGE_PATH }}

View File

@@ -0,0 +1,45 @@
name: release-charts-postgres-cluster
on:
push:
branches:
- main
paths:
- "charts/postgres-cluster"
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Helm
uses: azure/setup-helm@v3
with:
token: ${{ secrets.GITEA_TOKEN }}
version: latest
id: install
- name: Package Helm Chart
run: |
cd charts/postgres-cluster
echo "PACKAGE_PATH=$(helm package . | awk '{print $NF}')" >> $GITEA_ENV
- name: Publish Helm Chart to Harbor
run: |
helm registry login ${{ vars.REGISTRY_HOST }} -u ${{ vars.REGISTRY_USER }} -p ${{ secrets.REGISTRY_SECRET }}
helm push ${{ env.PACKAGE_PATH }} oci://${{ vars.REGISTRY_HOST }}/${{ vars.REGISTRY_USER }}
- name: Publish Helm Chart to Gitea
run: |
helm registry login ${{ vars.REPOSITORY_HOST }} -u ${{ github.actor }} -p ${{ secrets.REPOSITORY_TOKEN }}
helm push ${{ env.PACKAGE_PATH }} oci://${{ vars.REPOSITORY_HOST }}/${{ github.actor }}
- name: Release Helm Chart
uses: akkuman/gitea-release-action@v1
with:
files: |-
${{ env.PACKAGE_PATH }}

View File

@@ -1,38 +0,0 @@
name: Release Charts
# https://github.com/thpham/helm-oci-charts-releaser
on:
push:
branches:
- main
paths:
- 'charts/**'
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "${{ gitea.actor }}"
git config user.email "${{ gitea.actor }}@users.noreply.${{ vars.REPOSITORY_HOST }}"
- name: Run chart-releaser
uses: https://github.com/thpham/helm-oci-charts-releaser@v1
with:
oci_registry: ${{ vars.REGISTRY_HOST }}/v2/helm-charts
oci_username: ${{ vars.REGISTRY_USER }}
oci_password: ${{ secrets.REGISTRY_SECRET }}
gitea_server: ${{ vars.REPOSITORY_HOST }}
gitea_token: ${{ secrets.REPOSITORY_TOKEN }}
tag_name_pattern: '{chartName}-chart'
skip_existing: true
version: 3.17.1