Skip to content

Commit 49a1de4

Browse files
committed
Add github workflow helm chart package step for hyperion
1 parent a8e6825 commit 49a1de4

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/_helm.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,16 @@ jobs:
2727
TAG=${GITHUB_REF#refs/tags/}
2828
echo "version=$TAG" >> $GITHUB_OUTPUT
2929
30-
- name: Package and push chart
30+
- name: Package and push mx-bluesky-blueapi chart
3131
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
3232
run: |
3333
helm dependencies update helm/mx-bluesky-blueapi
3434
helm package helm/mx-bluesky-blueapi --version ${{ steps.meta.outputs.version }} --app-version ${{ steps.meta.outputs.version }} -d /tmp/
3535
helm push /tmp/mx-bluesky-blueapi-${{ steps.meta.outputs.version }}.tgz oci://ghcr.io/diamondlightsource/charts
36+
37+
- name: Package and push hyperion chart
38+
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
39+
run: |
40+
helm dependencies update helm/hyperion
41+
helm package helm/hyperion --version ${{ steps.meta.outputs.version }} --app-version ${{ steps.meta.outputs.version }} -d /tmp/
42+
helm push /tmp/hyperion-${{ steps.meta.outputs.version }}.tgz oci://ghcr.io/diamondlightsource/charts

0 commit comments

Comments
 (0)