We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d41e0b0 commit 487a99aCopy full SHA for 487a99a
.github/workflows/helm-release.yml
@@ -46,3 +46,12 @@ jobs:
46
version: v1.5.0
47
charts_dir: charts
48
config: .github/helm-release-config.yml
49
+
50
+ update-helm-repo:
51
+ uses: ./.github/workflows/submodule.yml
52
+ needs: helm-release
53
+ if: github.repository_owner == 'cryostatio'
54
+ secrets:
55
+ SUBMODULE_TOKEN: ${{ secrets.SUBMODULE_TOKEN }}
56
+ GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
57
+ GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
.github/workflows/submodule.yml
@@ -1,9 +1,14 @@
1
name: submodule
2
3
on:
4
- push:
5
- branches:
6
- - gh-pages
+ workflow_call:
+ SUBMODULE_TOKEN:
7
+ required: true
8
+ GPG_PRIVATE_KEY:
9
10
+ GPG_PASSPHRASE:
11
12
13
defaults:
14
run:
0 commit comments