-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: use goreleaser for releases (#526)
This will publish and announce releases on tag push.
- Loading branch information
1 parent
57c9331
commit b8a38ff
Showing
2 changed files
with
37 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: goreleaser | ||
|
||
on: | ||
push: | ||
tags: | ||
- v*.*.* | ||
|
||
concurrency: | ||
group: goreleaser | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
goreleaser: | ||
uses: charmbracelet/meta/.github/workflows/goreleaser.yml@main | ||
secrets: | ||
docker_username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
docker_token: ${{ secrets.DOCKERHUB_TOKEN }} | ||
gh_pat: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
goreleaser_key: ${{ secrets.GORELEASER_KEY }} | ||
twitter_consumer_key: ${{ secrets.TWITTER_CONSUMER_KEY }} | ||
twitter_consumer_secret: ${{ secrets.TWITTER_CONSUMER_SECRET }} | ||
twitter_access_token: ${{ secrets.TWITTER_ACCESS_TOKEN }} | ||
twitter_access_token_secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} | ||
mastodon_client_id: ${{ secrets.MASTODON_CLIENT_ID }} | ||
mastodon_client_secret: ${{ secrets.MASTODON_CLIENT_SECRET }} | ||
mastodon_access_token: ${{ secrets.MASTODON_ACCESS_TOKEN }} | ||
discord_webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }} | ||
discord_webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }} | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json |
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,8 @@ | ||
includes: | ||
- from_url: | ||
url: charmbracelet/meta/main/goreleaser-lib.yaml | ||
- from_url: | ||
url: charmbracelet/meta/main/goreleaser-announce.yaml | ||
|
||
# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json | ||
|