File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,21 @@ jobs:
29
29
version : v3.14.0
30
30
- name : Lint chart
31
31
run : helm lint ./chart
32
+
33
+ - name : Create charts tmp directory
34
+ run : |
35
+ mkdir charts-tmp
36
+ cp -a chart charts-tmp/deploydefender
37
+
32
38
- name : Package chart
33
39
run : |
34
40
mkdir -p .dist
35
- helm package ./chart --destination .dist
41
+ helm package charts-tmp/deploydefender --destination .dist
36
42
37
43
- name : Login to GHCR (OCI)
38
44
run : |
39
45
helm registry login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
46
+
40
47
- name : Push to GHCR (OCI)
41
48
run : |
42
49
helm push .dist/deploydefender-*.tgz oci://ghcr.io/${{ github.repository_owner }}/charts
46
53
with :
47
54
token : " ${{ secrets.GITHUB_TOKEN }}"
48
55
linting : off
49
- charts_dir : chart
56
+ charts_dir : charts-tmp
50
57
51
58
# - name: Publish to ArtifactHub
52
59
# run: |
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.1.2
18
+ version : 0.1.3
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
You can’t perform that action at this time.
0 commit comments