Kubernetes Operator that creates Service Endpoints from Secrets
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix gha

+3 -19
+1 -1
.github/workflows/docker-build.yml
··· 5 5 branches: 6 6 - main 7 7 paths-ignore: 8 - - "deploy/**" 8 + - "charts/**" 9 9 - ".github/**" 10 10 pull_request: 11 11 branches:
+2 -18
.github/workflows/helm-release.yml
··· 5 5 branches: 6 6 - "main" 7 7 paths: 8 - - "deploy/**" 8 + - "charts/**" 9 9 workflow_dispatch: 10 10 11 11 jobs: ··· 26 26 - name: Set up Helm 27 27 uses: Azure/setup-helm@v4 28 28 29 - - name: Package Helm chart 30 - id: helm_package 31 - run: | 32 - helm package deploy/charts/secret-service-operator -d .cr-release-packages 33 - PKG_NAME=$(ls .cr-release-packages/*.tgz) 34 - echo "name=$PKG_NAME" >> "$GITHUB_OUTPUT" 35 - 36 - - name: Upload Helm chart artifact 37 - uses: actions/upload-artifact@v4 38 - with: 39 - name: secret-service-operator 40 - path: | 41 - ${{ steps.helm_package.outputs.name }} 42 - 43 29 - name: Release Helm chart 44 30 env: 45 31 CR_GENERATE_RELEASE_NOTES: true 46 32 CR_MAKE_RELEASE_LATEST: true 47 33 CR_SKIP_EXISTING: true 48 34 CR_TOKEN: ${{ secrets.GITHUB_TOKEN }} 49 - uses: helm/chart-releaser-action@v1 50 - with: 51 - skip_packaging: true 35 + uses: helm/chart-releaser-action@v1