mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
fix: update release workflow to use latest tag
This commit is contained in:
parent
e8218d77a4
commit
45602058f6
2
.cz.toml
2
.cz.toml
@ -2,6 +2,6 @@
|
||||
name = "cz_conventional_commits"
|
||||
tag_format = "v$version"
|
||||
version_scheme = "semver"
|
||||
version = "0.10.0"
|
||||
version = "0.4.0"
|
||||
update_changelog_on_bump = true
|
||||
major_version_zero = true
|
||||
|
1
.github/workflows/scheduled-release.yml
vendored
1
.github/workflows/scheduled-release.yml
vendored
@ -36,3 +36,4 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
|
||||
GITHUB_PERSONAL_AUTH_TOKEN: ${{ secrets.GH_PAT_TOKEN }}
|
||||
|
22
.github/workflows/version-bump.yml
vendored
22
.github/workflows/version-bump.yml
vendored
@ -19,21 +19,37 @@ jobs:
|
||||
with:
|
||||
go-version: "1.22"
|
||||
check-latest: true
|
||||
|
||||
- name: Run tests
|
||||
run: make test
|
||||
|
||||
check-protos:
|
||||
name: "Check Protobuf Breaking Changes"
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
outputs:
|
||||
has_breaking_changes: ${{ steps.check_breaking.outputs.has_breaking_changes }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: bufbuild/buf-setup-action@v1
|
||||
- id: check_breaking
|
||||
uses: bufbuild/buf-breaking-action@v1
|
||||
with:
|
||||
against: "https://github.com/onsonr/sonr.git#branch=master"
|
||||
- name: Set output
|
||||
run: echo "has_breaking_changes=${{ steps.check_breaking.outcome == 'failure' }}" >> $GITHUB_OUTPUT
|
||||
|
||||
bump-version:
|
||||
if: "!startsWith(github.event.head_commit.message, 'bump:')"
|
||||
needs: [run-tests, check-protos]
|
||||
runs-on: ubuntu-latest
|
||||
name: "Bump Version"
|
||||
if: ${{ !startsWith(github.event.head_commit.message, 'bump:') }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Create bump and changelog
|
||||
uses: commitizen-tools/commitizen-action@master
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
increment: ${{ needs.check-protos.outputs.has_breaking_changes == 'true' && 'MINOR' || 'PATCH' }}
|
||||
|
@ -80,6 +80,7 @@ brews:
|
||||
owner: onsonr
|
||||
name: homebrew-tap
|
||||
branch: master
|
||||
token: "{{ .Env.GITHUB_PERSONAL_AUTH_TOKEN }}"
|
||||
|
||||
- name: motr
|
||||
ids: [motr]
|
||||
|
69
CHANGELOG.md
69
CHANGELOG.md
@ -1,72 +1,3 @@
|
||||
## v0.10.0 (2024-10-01)
|
||||
|
||||
### Feat
|
||||
|
||||
- allow manual release triggers
|
||||
|
||||
### Fix
|
||||
|
||||
- **versioning**: revert version to 0.9.0
|
||||
|
||||
## v0.9.0 (2024-10-01)
|
||||
|
||||
### Feat
|
||||
|
||||
- add Input and RegistrationForm models
|
||||
- add new utility classes
|
||||
- add login and registration pages
|
||||
- add tailwindcss utilities
|
||||
|
||||
### Fix
|
||||
|
||||
- **cta**: Fix typo in CTA title
|
||||
- change bento section title to reflect security focus
|
||||
|
||||
### Refactor
|
||||
|
||||
- move home page sections to home package
|
||||
|
||||
## v0.8.0 (2024-10-01)
|
||||
|
||||
### Feat
|
||||
|
||||
- add support for ARM64 architecture
|
||||
|
||||
## v0.7.0 (2024-10-01)
|
||||
|
||||
### Feat
|
||||
|
||||
- add DWN resolver field
|
||||
- add stats section to homepage
|
||||
- implement hero section using Pkl
|
||||
- add PKL schema for message formats
|
||||
|
||||
### Fix
|
||||
|
||||
- adjust hero image dimensions
|
||||
- **Input**: Change type from to
|
||||
- update hero image height in config.pkl
|
||||
|
||||
### Refactor
|
||||
|
||||
- rename motrd to motr
|
||||
- update hero image dimensions
|
||||
- move nebula configuration to static file
|
||||
- rename buf-publish.yml to publish-assets.yml
|
||||
- remove unused field from
|
||||
|
||||
## v0.6.0 (2024-09-30)
|
||||
|
||||
### Feat
|
||||
|
||||
- add Homebrew tap for sonr
|
||||
|
||||
## v0.5.0 (2024-09-30)
|
||||
|
||||
### Feat
|
||||
|
||||
- update release workflow to use latest tag
|
||||
|
||||
## v0.4.0 (2024-09-30)
|
||||
|
||||
### Feat
|
||||
|
Loading…
x
Reference in New Issue
Block a user