Skip to content

Commit 0a2a428

Browse files
committed
fix: Enhance release process
1 parent 69d07ba commit 0a2a428

1 file changed

Lines changed: 10 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,15 @@ jobs:
1616
build:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- name: Checkout
20-
uses: actions/checkout@v3
19+
- uses: actions/checkout@v3
20+
# Commit all changed files back to the repository with code signing, shouldn't be something, but loads signing
21+
- uses: planetscale/ghcommit-action@v0.1.8
22+
with:
23+
commit_message: "🤖 fmt"
24+
repo: ${{ github.repository }}
25+
branch: ${{ github.head_ref || github.ref_name }}
26+
env:
27+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
2128
- name: Semantic Release
2229
uses: cycjimmy/semantic-release-action@v4
2330
with:
@@ -57,12 +64,4 @@ jobs:
5764
push: true
5865
platforms: linux/amd64,linux/arm64
5966
tags: wurstbrot/dsomm:${{ steps.get-version.outputs.version }},wurstbrot/dsomm:latest
60-
- uses: actions/checkout@v3
61-
# Commit all changed files back to the repository with code signing
62-
- uses: planetscale/ghcommit-action@v0.1.8
63-
with:
64-
commit_message: "🤖 fmt"
65-
repo: ${{ github.repository }}
66-
branch: ${{ github.head_ref || github.ref_name }}
67-
env:
68-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
67+

0 commit comments

Comments
 (0)