Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
34dc485387 | ||
|
|
43b8f75380 |
10
.github/workflows/auto-versioning.yml
vendored
10
.github/workflows/auto-versioning.yml
vendored
@@ -23,10 +23,12 @@ jobs:
|
||||
with:
|
||||
# The prefix to use to create tags
|
||||
tag_prefix: "v"
|
||||
# A string which, if present in the git log, indicates that a major version increase is required
|
||||
major_pattern: "(MAJOR)"
|
||||
# A string which, if present in the git log, indicates that a minor version increase is required
|
||||
minor_pattern: "(feat)"
|
||||
# Regex pattern for major version bump (breaking changes)
|
||||
# Matches: "feat!:", "fix!:", "BREAKING CHANGE:" in commit messages
|
||||
major_pattern: "/!:|BREAKING CHANGE:/"
|
||||
# Regex pattern for minor version bump (new features)
|
||||
# Matches: "feat:" prefix in commit messages (Conventional Commits)
|
||||
minor_pattern: "/feat:/"
|
||||
# Pattern to determine formatting
|
||||
version_format: "${major}.${minor}.${patch}"
|
||||
# If no tags are found, this version is used
|
||||
|
||||
6
.github/workflows/release-goreleaser.yml
vendored
6
.github/workflows/release-goreleaser.yml
vendored
@@ -26,12 +26,12 @@ jobs:
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6
|
||||
with:
|
||||
go-version: '1.25.5'
|
||||
go-version: '1.23.x'
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
|
||||
with:
|
||||
node-version: '24.12.0'
|
||||
node-version: '20.x'
|
||||
|
||||
- name: Build Frontend
|
||||
working-directory: frontend
|
||||
@@ -56,4 +56,6 @@ jobs:
|
||||
distribution: goreleaser
|
||||
version: latest
|
||||
args: release --clean
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# CGO settings are handled in .goreleaser.yaml via Zig
|
||||
|
||||
Reference in New Issue
Block a user