-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (39 loc) · 1.06 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
name: go
on:
push:
branches:
- "master"
tags:
- "v*"
pull_request:
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Build
run: go build -v ./cmd/vanity-ssh-keygen/
- name: Test
run: go test -v ./...
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Login to Docker Hub
uses: docker/login-action@v3
if: success() && startsWith(github.ref, 'refs/tags/v')
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB }}
- name: Release
uses: goreleaser/goreleaser-action@v6
if: success() && startsWith(github.ref, 'refs/tags/v')
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KO_DOCKER_REPO: docker.io/${{ secrets.DOCKERHUB_USERNAME }}/vanity-ssh-keygen