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 057bb7d commit a61c8aeCopy full SHA for a61c8ae
.github/workflows/gh-pages-release.yml
@@ -30,5 +30,7 @@ jobs:
30
31
- name: Upload to OCI-based registry
32
run: |
33
- helm registry login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
34
- find .cr-release-packages/ -name *.tgz -exec helm push oci://ghcr.io/openmcp-project {} \;
+ if [ -d ".cr-release-packages" ]; then
+ helm registry login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
35
+ find .cr-release-packages/ -name *.tgz -exec helm push {} oci://ghcr.io/openmcp-project \;
36
+ fi
0 commit comments