-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (50 loc) · 1.35 KB
/
ci.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
45
46
47
48
49
50
name: CI
on:
push:
paths-ignore:
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
- "docs/**"
- '**.md'
- '**.txt'
- 'LICENSE'
pull_request:
paths-ignore:
- "docs/**"
- '**.md'
- '**.txt'
- 'LICENSE'
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
include:
- platform: ubuntu-latest
build_script: ./script/build.sh
build_suffix: tar.gz
- platform: macos-latest
build_script: ./script/build.sh
build_suffix: tar.gz
- platform: windows-latest
build_script: script/build.bat
build_suffix: zip
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Build Bloat
run: ${{ matrix.build_script }}
- name: Upload release
uses: svenstaro/upload-release-action@v1-release
if: startsWith(github.ref, 'refs/tags/')
with:
file_glob: true
file: bloat-*.${{ matrix.build_suffix }}
tag: ${{ github.ref }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
overwrite: true