-
Notifications
You must be signed in to change notification settings - Fork 142
43 lines (39 loc) · 1.03 KB
/
releaser.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
name: kray-releaser
on:
release:
types: [created]
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
RELEASE_NOTES: "generated by a new release in kubefirst/kubefirst repo"
jobs:
release-repos:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Update version file
run: echo $GITHUB_REF_NAME > VERSION.md
- name: Release konstructio/gitops-template
run: gh release create -R konstructio/gitops-template ${{ github.REF_NAME }} --generate-notes
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '>=1.18.0'
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}