Compare commits
9 Commits
851c54d3cc
...
linting
Author | SHA1 | Date | |
---|---|---|---|
|
583643bcab | ||
|
e0864adab0 | ||
|
6cd276eaa3 | ||
|
0a72a599f7 | ||
|
5523cd61d1 | ||
|
c6c13e201b | ||
|
ba29643c98 | ||
|
7049e3fc4f | ||
|
9b04821db0 |
@@ -2,8 +2,7 @@ name: Package and publish helm chart
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
jobs:
|
jobs:
|
||||||
package-helm:
|
package-helm:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -27,10 +26,23 @@ jobs:
|
|||||||
dir_names_max_depth: '2'
|
dir_names_max_depth: '2'
|
||||||
files: 'charts/**'
|
files: 'charts/**'
|
||||||
|
|
||||||
- name: build helm package
|
- name: Run helm lint on all changed charts
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
PACKAGE_TOKEN: ${{ secrets.REPO_HOST }}
|
ALL_CHANGED_CHARTS: ${{ steps.changed-files.outputs.all_changed_files }}
|
||||||
|
run: |
|
||||||
|
REPO_PATH=$(git rev-parse --show-toplevel)
|
||||||
|
for chart in ${ALL_CHANGED_CHARTS}; do
|
||||||
|
cd ${REPO_PATH}/${chart}
|
||||||
|
helm dependency build
|
||||||
|
helm lint .
|
||||||
|
done
|
||||||
|
|
||||||
|
- name: build helm package
|
||||||
|
shell: bash
|
||||||
|
if: gitea.ref == 'refs/heads/main'
|
||||||
|
env:
|
||||||
|
PACKAGE_TOKEN: ${{ secrets.PACKAGE_TOKEN }}
|
||||||
CHART_NAME: ${{ steps.chart_name.outputs.result }}
|
CHART_NAME: ${{ steps.chart_name.outputs.result }}
|
||||||
CHART_VERSION: ${{ steps.chart_version.outputs.result }}
|
CHART_VERSION: ${{ steps.chart_version.outputs.result }}
|
||||||
ALL_CHANGED_CHARTS: ${{ steps.changed-files.outputs.all_changed_files }}
|
ALL_CHANGED_CHARTS: ${{ steps.changed-files.outputs.all_changed_files }}
|
||||||
@@ -44,6 +56,5 @@ jobs:
|
|||||||
helm dependency build
|
helm dependency build
|
||||||
echo "Packaging ${CHART_NAME}-${CHART_VERSION}"
|
echo "Packaging ${CHART_NAME}-${CHART_VERSION}"
|
||||||
helm package .
|
helm package .
|
||||||
echo "$(ls -l)"
|
|
||||||
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
|
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
|
||||||
done
|
done
|
||||||
|
@@ -1,4 +1,3 @@
|
|||||||
#
|
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/home-assistant/home-assistant
|
repository: ghcr.io/home-assistant/home-assistant
|
||||||
tag:
|
tag:
|
||||||
|
Reference in New Issue
Block a user