-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (69 loc) · 2.06 KB
/
ci.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
72
73
74
75
76
77
78
79
80
81
82
name: CI
on:
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Install Task
run: |
curl -fsSL https://github.com/go-task/task/releases/download/v3.30.1/task_linux_amd64.tar.gz | \
sudo tar -xz -C /usr/local/bin task && \
sudo chmod +x /usr/local/bin/task
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --config=.golangci.yml
release:
needs: lint
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Install Task
run: |
curl -fsSL https://github.com/go-task/task/releases/download/v3.30.1/task_linux_amd64.tar.gz | \
sudo tar -xz -C /usr/local/bin task && \
sudo chmod +x /usr/local/bin/task
- name: Run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm install -g semantic-release @semantic-release/git @semantic-release/github
semantic-release
goreleaser:
needs: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Install Task
run: |
curl -fsSL https://github.com/go-task/task/releases/download/v3.30.1/task_linux_amd64.tar.gz | \
sudo tar -xz -C /usr/local/bin task && \
sudo chmod +x /usr/local/bin/task
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}