common-helm-lib/.gitea/workflows/buildPush.yaml

38 lines
1.1 KiB
YAML
Raw Normal View History

2024-10-18 13:23:09 +00:00
name: Package and publish helm chart
2024-10-18 12:21:00 +00:00
on:
push:
# Pattern matched against refs/tags
tags:
- '**' # Push events to every tag including hierarchical tags like v1.0/beta
jobs:
2024-10-18 12:41:56 +00:00
package-helm:
2024-10-18 12:21:00 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Check out code
2024-10-18 13:06:16 +00:00
- name: Get package name
id: chart_name
uses: mikefarah/yq@master
with:
cmd: yq .name Chart.yaml
- name: Get package version
id: chart_version
uses: mikefarah/yq@master
with:
cmd: yq .version Chart.yaml
2024-10-18 12:41:56 +00:00
2024-10-18 12:21:00 +00:00
- name: build helm package
shell: bash
env:
2024-11-11 09:55:03 +00:00
PACKAGE_TOKEN: ${{ secrets.REPO_HOST }}
2024-10-18 13:32:29 +00:00
CHART_NAME: ${{ steps.chart_name.outputs.result }}
2024-10-18 13:06:16 +00:00
CHART_VERSION: ${{ steps.chart_version.outputs.result }}
2024-10-18 12:21:00 +00:00
run: |
REPO_PATH=$(git rev-parse --show-toplevel)
mkdir /tmp/build
cd /tmp/build
2024-11-11 09:55:03 +00:00
curl -H "Authorization: token $PACKAGE_TOKEN" -X POST --upload-file $CHART_NAME-$CHART_VERSION.tgz https://git.rre.nu/api/packages/jonas/helm/api/charts