-
Notifications
You must be signed in to change notification settings - Fork 9
84 lines (71 loc) · 2.42 KB
/
release.yml
File metadata and controls
84 lines (71 loc) · 2.42 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
79
80
81
82
83
84
name: Release
on:
release:
types: [created]
permissions:
contents: write
jobs:
build:
name: Build and Upload Artifacts
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Download Go tools
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.56.2
go install golang.org/x/tools/cmd/goimports@latest
echo "PATH=$PATH:$(go env GOPATH)/bin" >> $GITHUB_ENV
- name: Run lint
run: make lint
-
name: Download OpenShift client
run: |
mkdir -p ~/oc
cd ~/oc
curl -L https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/openshift-client-linux.tar.gz -o oc.tar.gz
tar -xzf oc.tar.gz
echo "$HOME/oc" >> $GITHUB_PATH
- name: Run unit tests
run: make test-unit
- name: Extract version from tag
id: version
run: |
TAG=${{ github.event.release.tag_name }}
VERSION=${TAG#v}
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Build binaries
run: make build VERSION=${{ steps.version.outputs.version }}
- name: Upload Linux binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./cmd/tailor/tailor-linux-amd64
asset_name: tailor-linux-amd64
asset_content_type: application/octet-stream
- name: Upload macOS binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./cmd/tailor/tailor-darwin-amd64
asset_name: tailor-darwin-amd64
asset_content_type: application/octet-stream
- name: Upload Windows binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./cmd/tailor/tailor-windows-amd64.exe
asset_name: tailor-windows-amd64.exe
asset_content_type: application/octet-stream