-
Notifications
You must be signed in to change notification settings - Fork 8
44 lines (38 loc) · 1.11 KB
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: goreleaser
on:
push:
tags:
- '*'
permissions:
contents: 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: 1.21
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Commit homebrew forumulaa
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
export MESSAGE="chore: regenerate homebrew formula"
export SHA=$(git rev-parse --verify origin/main:Formula/terraform-demux.rb)
export CONTENT=$(base64 -i dist/homebrew/Formula/terraform-demux.rb)
gh api --method PUT /repos/:owner/:repo/contents/Formula/terraform-demux.rb \
--field message="$MESSAGE" \
--field content="$CONTENT" \
--field encoding="base64" \
--field sha="$SHA"