-
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.
Merge pull request #1 from adithayyil/dev
intial release flow and add vendors
- Loading branch information
Showing
533 changed files
with
247,305 additions
and
45 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
# .github/workflows/release.yml | ||
name: goreleaser | ||
|
||
on: | ||
push: | ||
# run only against tags | ||
tags: | ||
- "*" | ||
|
||
permissions: | ||
contents: write | ||
# packages: write | ||
# issues: write | ||
|
||
jobs: | ||
goreleaser: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: stable | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
distribution: goreleaser | ||
version: ${{ github.ref }} | ||
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 |
---|---|---|
|
@@ -22,6 +22,8 @@ builds: | |
- linux | ||
- windows | ||
- darwin | ||
flags: | ||
- -mod=vendor | ||
|
||
archives: | ||
- format: tar.gz | ||
|
@@ -41,6 +43,32 @@ archives: | |
changelog: | ||
sort: asc | ||
filters: | ||
include: | ||
- "^feature:" | ||
- "^fix:" | ||
exclude: | ||
- "^docs:" | ||
- "^test:" | ||
|
||
project_name: bsdl | ||
|
||
release: | ||
github: | ||
owner: adithayyil | ||
name: bsdl | ||
|
||
brews: | ||
- | ||
name: bsdl | ||
homepage: "https://github.com/adithayyil/bsdl" | ||
description: "BeatStars Music Downloader" | ||
tap: | ||
owner: adithayyil | ||
name: homebrew-bsdl | ||
commit_author: | ||
name: adithayyil | ||
email: [email protected] | ||
caveats: "Usage: bsdl --help" | ||
|
||
checksum: | ||
name_template: "{{ .ProjectName }}_checksums.txt" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.