-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (69 loc) · 1.71 KB
/
go.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Go
on:
push:
branches: [ main ]
tags:
- '*'
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: self-hosted
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.9
- name: Run lint
uses: golangci/[email protected]
with:
version: latest
args: --timeout 10m0s
tests:
runs-on: self-hosted
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22.5
- name: Install dependencies
run: sudo apt install make -y
- name: Run tests
run: make test-ci
docker-image:
runs-on: self-hosted
if: startsWith(github.ref, 'refs/tags/v')
needs:
- tests
- lint
permissions:
packages: write
contents: read
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: tfgco/${{ github.event.repository.name }}
- name: Build and Push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: |
${{ steps.meta.outputs.tags }}
tfgco/${{ github.event.repository.name }}:latest
labels: ${{ steps.meta.outputs.labels }}