File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 19
19
- uses : actions/checkout@v3
20
20
with :
21
21
persist-credentials : false # This is important if you have branch protection rules!
22
- - name : Import bot's GPG key for signing commits
23
- id : import-gpg
24
- uses : crazy-max/ghaction-import-gpg@v6
25
- with :
26
- gpg_private_key : ${{ secrets.BOT_GPG_PRIVATE_KEY }}
27
- passphrase : " "
28
- git_config_global : true
29
- git_user_signingkey : true
30
- git_commit_gpgsign : true
31
22
- name : Semantic Release
23
+ continue-on-error : true
32
24
uses : cycjimmy/semantic-release-action@v4
33
25
with :
34
26
branch : ' master'
42
34
run : |
43
35
echo "Semantic Release Version: ${{ steps.get-version.outputs.version }}"
44
36
37
+ # Commit all changed files back to the repository
38
+ - uses : planetscale/ghcommit-action@v0.1.6
39
+ with :
40
+ commit_message : " 🤖 fmt"
41
+ repo : ${{ github.repository }}
42
+ branch : ${{ github.head_ref || github.ref_name }}
43
+ env :
44
+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
45
+
45
46
- name : setup qemu for multi-arch build
46
47
uses : docker/setup-qemu-action@v2
47
48
with :
68
69
platforms : linux/amd64,linux/arm64
69
70
tags : wurstbrot/dsomm:${{ steps.get-version.outputs.version }},wurstbrot/dsomm:latest
70
71
72
+ - uses : actions/checkout@v3
Original file line number Diff line number Diff line change 20
20
}
21
21
],
22
22
" @semantic-release/github"
23
- ],
24
- "ci" : false
23
+ ]
25
24
}
You can’t perform that action at this time.
0 commit comments