Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
louisnow committed Jul 16, 2024
1 parent 83efc23 commit 6f2088c
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ jobs:
# PGP_PRIVATE_KEY: "${{ secrets.PGP_PRIVATE_KEY }}"
# PGP_PASSPHRASE: "${{ secrets.PGP_PASSPHRASE }}"

- name: Run chart-releaser
uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0
with:
config: "./.github/configs/cr.yaml"
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
# - name: Run chart-releaser
# uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0
# with:
# config: "./.github/configs/cr.yaml"
# env:
# CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

# - name: Login to GHCR
# uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
Expand All @@ -91,8 +91,9 @@ jobs:
REGISTRY: ${{ steps.login-ecr-public.outputs.registry }}
REGISTRY_ALIAS: f1l2l1f6
run: |
helm package charts/argo-workflows
shopt -s nullglob
for pkg in .cr-release-packages/*.tgz; do
for pkg in *.tgz; do
if [ -z "${pkg:-}" ]; then
break
fi
Expand Down

0 comments on commit 6f2088c

Please sign in to comment.