1
0
Fork 0
mirror of https://github.com/on4kjm/FLEcli.git synced 2025-02-07 16:32:46 +01:00
FLEcli/.github/workflows/release.yml

31 lines
972 B
YAML
Raw Normal View History

2020-07-23 13:23:35 +02:00
name: Release with goreleaser
on:
push:
tags:
- v*.*.*
jobs:
build:
runs-on: ubuntu-latest
name: goreleaser
steps:
- uses: actions/checkout@v4
- name: Login to DockerHub Registry
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
2020-07-23 13:23:35 +02:00
- name: Unshallow Fetch
run: git fetch --prune --unshallow
- uses: actions/setup-go@v5
2020-07-23 13:23:35 +02:00
with:
2023-11-14 11:36:42 +01:00
go-version: '^1.21.3'
- uses: tibdex/github-app-token@v2
id: generate_homebrew_token
with:
app_id: ${{ secrets.HOMEBREW_APP_ID }}
private_key: ${{ secrets.HOMEBREW_APP_PRIVKEY }}
2020-07-23 13:23:35 +02:00
- name: Release via goreleaser
uses: goreleaser/goreleaser-action@v5
2020-07-23 13:23:35 +02:00
with:
distribution: goreleaser
2020-08-11 12:40:31 +02:00
args: release --release-notes=doc/whats_new.md
2020-07-23 13:23:35 +02:00
env:
2021-12-05 21:27:24 +01:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW: ${{ steps.generate_homebrew_token.outputs.token }}