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 -11
+3 -11
.github/workflows/helm-release.yml
··· 15 15 - name: Checkout 16 16 uses: actions/checkout@v2 17 17 with: 18 - path: 'src' 19 - ref: 'main' 20 - fetch-depth: 0 21 - 22 - - name: Checkout 23 - uses: actions/checkout@v2 24 - with: 25 - path: 'dest' 26 - ref: 'gh-pages' 27 - fetch-depth: 0 18 + ref: 'main' 19 + fetch-depth: 0 28 20 29 21 - name: Set up Helm 30 22 uses: Azure/setup-helm@v4 ··· 32 24 - name: Package Helm chart 33 25 id: helm_package 34 26 run: | 35 - helm package src/deploy/charts/secret-service-operator 27 + helm package deploy/charts/secret-service-operator 36 28 PKG_NAME=$(ls secret-service-operator*.tgz) 37 29 echo "name=$PKG_NAME" >> "$GITHUB_OUTPUT" 38 30