From 1a33b0cb798972c4279cdcb8051b6b2a93c44668 Mon Sep 17 00:00:00 2001 From: danielswiatek Date: Wed, 4 Feb 2026 21:28:18 +0100 Subject: [PATCH 1/2] chore: update helm-oci-chart-releaser to v0.4.2 and change registry to Docker Hub --- .github/workflows/helm.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index 64d1ac93..b3741663 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -45,12 +45,12 @@ jobs: sed -i "s/commit: .*/commit: ${{ needs.prepare.outputs.commit }}/g" chart/brahmsee-digital/values.yaml - name: Chart | Push brahmsee-digital - uses: appany/helm-oci-chart-releaser@v0.3.0 + uses: appany/helm-oci-chart-releaser@v0.4.2 with: name: brahmsee-digital - repository: codeanker/brahmsee.digital + repository: codeanker tag: ${{needs.prepare.outputs.version}}-${{needs.prepare.outputs.commit}} path: chart/brahmsee-digital - registry: ghcr.io - registry_username: ${{ github.actor }} - registry_password: ${{ secrets.GITHUB_TOKEN }} + registry: docker.io + registry_username: ${{ secrets.DOCKERHUB_USERNAME }} + registry_password: ${{ secrets.DOCKERHUB_TOKEN }} From 61222ed3684fda64628476eb6caf0ab2253d2e45 Mon Sep 17 00:00:00 2001 From: danielswiatek Date: Wed, 4 Feb 2026 21:28:48 +0100 Subject: [PATCH 2/2] feat: add GitHub Release workflow for automated releases --- .github/workflows/gh-release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/gh-release.yml diff --git a/.github/workflows/gh-release.yml b/.github/workflows/gh-release.yml new file mode 100644 index 00000000..fe77fc2d --- /dev/null +++ b/.github/workflows/gh-release.yml @@ -0,0 +1,15 @@ +name: GitHub Release + +on: + push: + tags: + - 'v*.*.*' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Release + uses: softprops/action-gh-release@v1