Skip to content

Commit

Permalink
create zipfile and github release
Browse files Browse the repository at this point in the history
  • Loading branch information
unglaublicherdude committed Aug 6, 2024
1 parent 1893ad3 commit 4b33236
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,16 @@ jobs:
registry_username: ${{ secrets.REGISTRY_USERNAME }}
registry_password: ${{ secrets.CR_TOKEN }}
update_dependencies: "true"

- name: create zipfile
run: zip -r vaas-helm.zip charts/vaas/

- name: Github Release
uses: softprops/action-gh-release@v2
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
with:
tag_name: $CHART_VERSION
generate_release_notes: true
make_latest: true
files: |
vaas-helm.zip

0 comments on commit 4b33236

Please sign in to comment.