Skip to content

Commit

Permalink
amend the commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-dot committed Nov 27, 2024
1 parent 6f059c5 commit 02a463b
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/helm_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
echo ${{ secrets.GITHUB_TOKEN }} | helm registry login ghcr.io/${{ github.repository_owner }} --username ${{ github.repository_owner }} --password-stdin
REGISTRY=oci://ghcr.io/epics-containers
REGISTRY=oci://ghcr.io/diamondlightsource
set -x
# helm tags must be SemVar. Use 0.0.0-b0 for testing the latest non-tagged build
Expand All @@ -35,14 +35,10 @@ jobs:
TAG="0.0.0-b0"
fi
for chart in helm/*; do
(
cd $(realpath $chart)
NAME=$(sed -n '/^name: */s///p' Chart.yaml)
cd helm
NAME=channelfinder
helm package -u --app-version ${TAG} --version ${TAG} .
PACKAGE=${NAME}-${TAG}.tgz
helm package -u --app-version ${TAG} --version ${TAG} .
PACKAGE=${NAME}-${TAG}.tgz
helm push "$PACKAGE" $REGISTRY
)
done
helm push "$PACKAGE" $REGISTRY

0 comments on commit 02a463b

Please sign in to comment.