We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2299578 commit 7331b50Copy full SHA for 7331b50
1 file changed
.github/workflows/publish-helm-chart.yml
@@ -2,11 +2,15 @@ name: publish-helm-chart
2
3
on:
4
push:
5
- branches: ['master']
+ branches:
6
+ - master
7
+ # TODO: remove me
8
+ - fix/eip-attach-iface-name
9
tags:
10
- '*'
11
paths:
12
- 'helm/**'
13
+ - '.github/workflows/publish-helm-chart.yml'
14
15
concurrency: ${{ github.ref }}
16
@@ -28,10 +32,11 @@ jobs:
28
32
TOKEN: "${{ secrets.GITHUB_TOKEN }}"
29
33
USER: "${{ github.repository_owner }}"
30
34
run: |
35
+ set -x
31
36
rm -rf dist
37
mkdir dist
38
helm package helm/ -d dist/
- echo "${TOKEN}" | helm registry login "${REGISTRY}/${REPOSITORY,,}" -u "${USER}" --password-stdin
39
+ echo "${TOKEN}" | helm registry login "${REGISTRY}" -u "${USER}" --password-stdin
40
for file in dist/*; do
41
helm push "$file" "oci://${REGISTRY}/${REPOSITORY,,}/charts"
42
done
0 commit comments