We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1945b65 commit 2236f0cCopy full SHA for 2236f0c
.github/workflows/project-codeflare-release.yml
@@ -165,3 +165,20 @@ jobs:
165
echo "Kueue release with version ${{ github.event.inputs.kueue-version }} does not exist. Please select an existing version."
166
exit 1
167
fi
168
+
169
+ generate-component-metadata:
170
+ needs: [check-appwrapper-version, check-kuberay-version, check-kueue-version]
171
+ runs-on: ubuntu-latest
172
173
+ steps:
174
+ - name: Generate component_metadata.yaml
175
+ run: |
176
+ cat <<EOL > config/component_metadata.yaml
177
+ releases:
178
+ - name: CodeFlare Operator
179
+ version: ${{ github.event.inputs.operator-version }}
180
+ repoUrl: https://github.com/project-codeflare/codeflare-operator
181
+ EOL
182
183
+ - name: Verify generated file
184
+ run: cat config/component_metadata.yaml
0 commit comments