lint and only build on main
This commit is contained in:
parent
4d6bd42402
commit
2b2c082b58
@ -29,15 +29,19 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
cmd: yq .version Chart.yaml
|
cmd: yq .version Chart.yaml
|
||||||
|
|
||||||
|
- name: Run helm lint on all changed charts
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
helm dependency build
|
||||||
|
helm lint .
|
||||||
|
|
||||||
- name: build helm package
|
- name: build helm package
|
||||||
|
if: gitea.ref == 'refs/heads/main'
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
PACKAGE_TOKEN: ${{ secrets.PACKAGE_TOKEN }}
|
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 }}
|
||||||
run: |
|
run: |
|
||||||
REPO_PATH=$(git rev-parse --show-toplevel)
|
helm package .
|
||||||
mkdir /tmp/build
|
|
||||||
cd /tmp/build
|
|
||||||
helm package $REPO_PATH
|
|
||||||
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
|
||||||
|
Loading…
Reference in New Issue
Block a user