Skip to content

Commit

Permalink
fix cleanup workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard87 committed Oct 11, 2024
1 parent 78964b8 commit 6343bdc
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 38 deletions.
29 changes: 28 additions & 1 deletion .github/workflows/build-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:

build-container-image:
name: Build Helm chart
name: Build container image
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
Expand Down Expand Up @@ -52,3 +52,30 @@ jobs:
platforms: |
linux/amd64
linux/arm64
build-helm-chart:
name: Build Helm chart
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
37 changes: 0 additions & 37 deletions .github/workflows/build-helm.yaml

This file was deleted.

0 comments on commit 6343bdc

Please sign in to comment.