Skip to content

Commit

Permalink
feat: adding release charts workflow and testing it
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatamutyala authored Aug 7, 2024
1 parent 2ab3176 commit fee3549
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release Charts

on:
push:

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
packages: 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 "$GITHUB_ACTOR@users.noreply.github.com"
- name: Run chart-releaser
uses: bitdeps/helm-oci-charts-releaser@v0.1.0
with:
oci_registry: ghcr.io/username
oci_username: username
oci_password: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit fee3549

Please sign in to comment.