Skip to content

Commit

Permalink
feat: publish helm chart to resolve #106
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldotyu committed Feb 9, 2024
1 parent 5cd8071 commit fe32abc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release-container-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ github.token }}

- name: Build and push
- name: Build and push container images
uses: docker/build-push-action@v2
with:
context: src/${{ matrix.apps }}
Expand All @@ -72,4 +72,9 @@ jobs:
labels: |
org.opencontainers.image.source=${{ github.repositoryUrl }}
org.opencontainers.image.created=${{ steps.set-variables.outputs.CREATED }}
org.opencontainers.image.revision=${{ steps.set-variables.outputs.VERSION }}
org.opencontainers.image.revision=${{ steps.set-variables.outputs.VERSION }}
- name: Package and push helm chart
run: |
helm package ./charts/aks-store-demo --version ${{ steps.set-variables.outputs.VERSION }}
helm push ./aks-store-demo-chart-${{ steps.set-variables.outputs.VERSION }}.tgz oci://${{ steps.set-variables.outputs.REPOSITORY }}/charts

0 comments on commit fe32abc

Please sign in to comment.