Skip to content

Commit

Permalink
Move helm-release/release job to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
itskingori committed Oct 16, 2024
1 parent de0c069 commit ed8dd3a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 35 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/helm-release.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,27 @@ jobs:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
repository: ${{ env.IMAGE }}

helm-release:
runs-on: ubuntu-latest
needs: github-release
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Set Up Helm
uses: azure/[email protected]
with:
version: v3.14.4
- name: Run Chart-Releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_RELEASE_NAME_TEMPLATE: "{{ .Name }}-chart-{{ .Version }}"

0 comments on commit ed8dd3a

Please sign in to comment.