generated from okp4/template-oss
-
Notifications
You must be signed in to change notification settings - Fork 23
42 lines (37 loc) · 1.34 KB
/
bump-axoned-version.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
name: Bump axoned version
on:
workflow_dispatch:
inputs:
axonedVersion:
description: "Version of axoned"
required: true
jobs:
bump-axoned-version:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
token: ${{ secrets.OPS_TOKEN }}
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.BOT_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.BOT_GPG_PASSPHRASE }}
git_config_global: true
git_user_signingkey: true
git_commit_gpgsign: true
- name: Bump axoned version
run: |
dataFile="data/chain.json"
tmpFile=$(mktemp)
jq '.axonedVersion |= "${{ github.event.inputs.axonedVersion }}"' "$dataFile" > "$tmpFile" &&
cp "$tmpFile" "$dataFile" &&
rm -f "$tmpFile"
- name: Commit axoned version change
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_user_name: ${{ vars.BOT_GIT_COMMITTER_NAME }}
commit_user_email: ${{ vars.BOT_GIT_COMMITTER_EMAIL }}
commit_author: ${{ vars.BOT_GIT_AUTHOR_NAME }} <${{ vars.BOT_GIT_AUTHOR_EMAIL }}>
commit_message: "build: bump axoned version to ${{ github.event.inputs.axonedVersion }}"