We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 012c5c5 + 6ad3164 commit af34a88Copy full SHA for af34a88
.github/workflows/helm.yaml
@@ -0,0 +1,22 @@
1
+name: Helm OCI Worklow
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'helm-*'
7
8
+jobs:
9
+ helm:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v3
14
15
+ - name: Build and Push
16
+ run: |-
17
+ helm registry login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
18
+ VERSION="${{ github.ref_name }}"
19
+ VERSION=${VERSION#"helm-"}
20
+ cd helm/designate-certmanager-webhook
21
+ helm package . --version ${VERSION}
22
+ helm push designate-certmanager-webhook-${VERSION}.tgz oci://ghcr.io/syseleven/helm
0 commit comments