forked from kubeagi/arcadia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Abirdcfly <fp544037857@gmail.com>
- Loading branch information
Showing
3 changed files
with
109 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: goreleaser | ||
|
||
on: | ||
push: | ||
# run only against tags. | ||
tags: | ||
- 'v*' | ||
permissions: | ||
contents: write | ||
# packages: write | ||
# issues: write | ||
|
||
jobs: | ||
goreleaser: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- run: git fetch --force --tags | ||
- uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
# either 'goreleaser' (default) or 'goreleaser-pro': | ||
distribution: goreleaser | ||
version: latest | ||
args: release --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Make sure to check the documentation at https://goreleaser.com | ||
git: | ||
ignore_tags: | ||
- "arcadia-*" | ||
- "component-store-*" | ||
- "llm-worker-*" | ||
- "jupyterlab-*" | ||
builds: | ||
- skip: true | ||
snapshot: | ||
name_template: "{{ incpatch .Version }}-next" | ||
changelog: | ||
sort: asc | ||
use: github | ||
groups: | ||
- title: New Features | ||
regexp: "^.*feat[(\\w)]*:+.*$" | ||
order: 0 | ||
- title: 'Bug Fixes' | ||
regexp: "^.*fix[(\\w)]*:+.*$" | ||
order: 1 | ||
- title: Others | ||
order: 999 | ||
filters: | ||
exclude: | ||
- '^Merge pull request' | ||
release: | ||
draft: true | ||
replace_existing_draft: false | ||
mode: append | ||
header: | | ||
## {{.ProjectName}}-v{{.Version}} | ||
Welcome to this new release! | ||
### Images built for this release: | ||
- `abirdcfly/arcadia:v{{ .Version }}` | ||
- `abirdcfly/data-processing:v{{ .Version }}` | ||
### Breaking Changes: | ||
None | ||
### Feature summary 🚀 🚀 🚀 | ||
TODO | ||
footer: | | ||
## Thanks to our Contributors! | ||
Thank you to everyone who contributed to {{.Tag}}! ❤️ | ||
And thank you very much to everyone else not listed here who contributed in other ways like filing issues, giving feedback, testing fixes, helping users in slack, etc. 🙏 | ||
name_template: "v{{.Version}}" |