feat: initial version

This commit is contained in:
pommee
2024-12-30 10:23:54 +01:00
commit 9ff7666154
36 changed files with 157509 additions and 0 deletions

26
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
if: "!contains(github.event.head_commit.message, 'chore:')" # Skip if "chore:" is in the commit message
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.23.2
- uses: go-semantic-release/action@v1
with:
hooks: goreleaser
allow-initial-development-versions: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}