-
Notifications
You must be signed in to change notification settings - Fork 15
78 lines (65 loc) · 2.03 KB
/
release.yml
File metadata and controls
78 lines (65 loc) · 2.03 KB
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
name: Release
on:
push:
tags:
- 'v*'
jobs:
branches:
name: Release
runs-on: ubuntu-20.04
env:
GO_VERSION: '1.20'
GOLANGCI_LINT_VERSION: v1.52.2
steps:
# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
# https://github.com/marketplace/actions/checkout
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-hub-agent-kubernetes-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-hub-agent-kubernetes-go-
- name: Check and get dependencies
run: |
go mod download
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
# https://golangci-lint.run/usage/install#other-ci
- name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
- name: Make
run: make
- name: Setup buildx
uses: docker/setup-buildx-action@v1
id: buildx
with:
install: true
- name: Login to GHCR
if: github.repository == 'traefik/hub-agent-kubernetes'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: traefiker
password: ${{ secrets.GHCR_TOKEN }}
- name: Build multi arch image
env:
DOCKER_BUILDX_ARGS: --push
run: |
make multi-arch-image-latest
make multi-arch-image-${{github.ref_name}}
- name: Create release
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true