-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (43 loc) · 1.03 KB
/
release.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: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-node@v4
with:
node-version: "18.x"
- run: npm ci
working-directory: ui/
- run: npm run build
working-directory: ui/
- uses: actions/setup-go@v5
with:
go-version: "1.21.1"
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.55.2
- name: Build
run: make build-all
- name: Install UPX
uses: crazy-max/ghaction-upx@v3
with:
install-only: true
- run: make compress-linux
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: bin/securebin*
tag: ${{ github.ref }}
overwrite: true
file_glob: true