Skip to content

Commit

Permalink
fixes 149: add steps to publish Helm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavlos Tzianos committed May 5, 2024
1 parent 769a580 commit 2460854
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,11 @@ jobs:

- name: Publish Docker images
run: make publish-component-containers

- name: Publish component Helm package
run: |
set -e;
DRACON_VERSION=$(sed 's/v//' <<< ${{ github.ref_name }});
make cmd/draconctl/bin; \
bin/cmd/draconctl components package --version ${DRACON_VERSION} --chart-version ${DRACON_VERSION} --name dracon-oss-components ./components; \
helm push dracon-oss-components-${DRACON_VERSION}.tgz oci://ghcr.io/ocurity/charts

0 comments on commit 2460854

Please sign in to comment.