-
Notifications
You must be signed in to change notification settings - Fork 7
71 lines (59 loc) · 1.56 KB
/
build.yml
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
65
66
67
68
69
70
71
name: ci
on: [push, pull_request]
jobs:
ci:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
go: ["^1.18.0"]
os: [ubuntu-latest, macOS-latest, windows-latest]
name: Go ${{ matrix.go }} in ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Environment
run: |
go version
go env
- name: Format
run: |
make format-check
- name: Test
run: |
make test
go mod tidy
git checkout ./
- name: Build
uses: goreleaser/goreleaser-action@v3
with:
version: latest
args: release --rm-dist --skip-publish --skip-validate
release:
name: Release to Github
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'axetroy/dvm'
needs: [ci]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: axetroy/setup-whatchanged@v1
with:
version: v0.5.7
- name: Generate changelog
run: |
whatchanged --output=release.md
cat release.md
- uses: actions/setup-go@v3
with:
go-version: "^1.18.0"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
version: latest
args: release --rm-dist --release-notes=./release.md --skip-validate
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}