We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b53525 commit ef54cabCopy full SHA for ef54cab
.github/workflows/release.yml
@@ -76,22 +76,3 @@ jobs:
76
skip_existing: true
77
env:
78
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
79
-
80
- - name: Login to GitHub Container Registry
81
- if: steps.changesets.outputs.hasChangesets == 'false'
82
- uses: docker/login-action@v1
83
- with:
84
- registry: ghcr.io
85
- username: openprojectci
86
- password: ${{ secrets.GITHUB_TOKEN }}
87
88
- - name: Push Charts to GHCR
89
90
- run: |
91
- shopt -s nullglob
92
- for pkg in .cr-release-packages/*.tgz; do
93
- if [ -z "${pkg:-}" ]; then
94
- break
95
- fi
96
- helm push "${pkg}" oci://ghcr.io/${GITHUB_REPOSITORY_OWNER}/helm-charts
97
- done
0 commit comments