-
Notifications
You must be signed in to change notification settings - Fork 13
44 lines (41 loc) · 1.29 KB
/
submodule.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Update Submodule
on:
workflow_call:
secrets:
SUBMODULE_TOKEN:
required: true
GPG_PRIVATE_KEY:
required: true
GPG_PASSPHRASE:
required: true
defaults:
run:
shell: bash
jobs:
update-submodule:
if: ${{ github.repository_owner == 'cryostatio' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: cryostatio/cryostatio.github.io
token: "${{ secrets.SUBMODULE_TOKEN }}"
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: Update submodule to latest commit
run: |
git submodule update --init
git submodule update --remote
- name: Commit and push submodule
run: |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
git add --all
git_hash="$(git rev-parse --short :helm-charts)"
git commit -S -m "build(helm-charts): update submodule to $git_hash" || echo "No changes to commit"
git push