File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,14 @@ jobs:
101101 - name : Generate operator.yaml
102102 run : make generate-operator-yaml
103103
104+ # Upload helm-charts as an artifact for the docker-build job
105+ - name : Upload Helm charts
106+ uses : actions/upload-artifact@v3
107+ with :
108+ name : helm-charts
109+ path : helm-charts/
110+ retention-days : 1
111+
104112 # Create a tag for non-draft manual releases
105113 - name : Create and push tag
106114 if : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.draft == false }}
@@ -155,6 +163,13 @@ jobs:
155163 with :
156164 ref : ${{ github.ref }} # Ensure we're using the tagged commit
157165
166+ # Download helm-charts artifact from the release job
167+ - name : Download Helm charts
168+ uses : actions/download-artifact@v3
169+ with :
170+ name : helm-charts
171+ path : helm-charts/
172+
158173 - name : Set version
159174 id : set_version
160175 run : |
Original file line number Diff line number Diff line change 33# To re-generate a bundle for another specific version without changing the standard setup, you can:
44# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6- VERSION ?= 0.0.3
6+ VERSION ?= 0.0.5
77
88# CHANNELS define the bundle channels used in the bundle.
99# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
You can’t perform that action at this time.
0 commit comments