-
Notifications
You must be signed in to change notification settings - Fork 4
64 lines (62 loc) · 2.25 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
name: release for eibc-client
on:
push:
branches:
- 'main'
tags:
- 'v*'
jobs:
release:
name: release
runs-on: ubuntu-latest
permissions:
pull-requests: write
actions: read
contents: write
steps:
- id: release-please
name: Create release notes from conventional commits
uses: google-github-actions/release-please-action@v3
with:
pull-request-header: ":loop: New eibc-client Release"
release-type: go
package-name: eibc-client
prerelease: true
prerelease-label: beta
changelog-types: >-
[
{"type":"feat","section":"Features","hidden":false},
{"type":"fix","section":"Bug Fixes","hidden":false},
{"type":"docs","section":"Documentation","hidden":false},
{"type":"chore","section":"Miscellaneous","hidden":true},
{"type":"ci","section":"Miscellaneous","hidden":true},
{"type":"test","section":"Miscellaneous","hidden":true}
]
# token must have repo write permissions ( https://github.com/googleapis/release-please/blob/main/docs/cli.md#create-a-manifest-pull-request-deprecated )
token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v3
if: steps.release-please.outputs.release_created
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
if: steps.release-please.outputs.release_created
with:
go-version-file: go.mod
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
if: steps.release-please.outputs.release_created
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
if: steps.release-please.outputs.release_created
# TODO: handle GCP, AWS, GitHub, Docker Hub and Azure container registries
- name: Run GoReleaser - release binaries
uses: goreleaser/goreleaser-action@v6
with:
args: release --clean --config .goreleaser.yaml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOPRIVATE: github.com/${{ env.GITHUB_REPOSITORY_OWNER }}
if: steps.release-please.outputs.release_created