Skip to content

Commit

Permalink
fix: Enhance release process
Browse files Browse the repository at this point in the history
  • Loading branch information
wurstbrot committed Nov 9, 2023
1 parent 69d07ba commit 0a2a428
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/checkout@v3
# Commit all changed files back to the repository with code signing, shouldn't be something, but loads signing
- uses: planetscale/[email protected]
with:
commit_message: "🤖 fmt"
repo: ${{ github.repository }}
branch: ${{ github.head_ref || github.ref_name }}
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
with:
Expand Down Expand Up @@ -57,12 +64,4 @@ jobs:
push: true
platforms: linux/amd64,linux/arm64
tags: wurstbrot/dsomm:${{ steps.get-version.outputs.version }},wurstbrot/dsomm:latest
- uses: actions/checkout@v3
# Commit all changed files back to the repository with code signing
- uses: planetscale/[email protected]
with:
commit_message: "🤖 fmt"
repo: ${{ github.repository }}
branch: ${{ github.head_ref || github.ref_name }}
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 0a2a428

Please sign in to comment.