-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (35 loc) · 906 Bytes
/
release.yml
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
# Docs
# https://github.com/softprops/action-gh-release
name: Release
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.2"
- name: Install tools
run: |
# sudo apt update
sudo apt -y install make zip
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Create binaries
if: startsWith(github.ref, 'refs/tags/')
run: make build
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
fsync-darwin-amd64.zip
fsync-darwin-arm64.zip
fsync-linux-amd64.zip
fsync-windows-amd64.zip