-
Notifications
You must be signed in to change notification settings - Fork 21
55 lines (49 loc) · 1.19 KB
/
build-test-binary.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
51
52
53
54
55
name: Buind Test Binary
on:
push:
branches:
- master
- release-*
tags:
- "v*"
pull_request:
branches:
- master
- release-*
workflow_dispatch: {}
jobs:
detect-noop:
name: Detect No-op Changes
runs-on: ubuntu-latest
outputs:
noop: ${{ steps.noop.outputs.should_skip }}
steps:
- name: Detect No-op Changes
id: noop
uses: fkirc/skip-duplicate-actions@v5
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
paths_ignore: '["**.md", "**.mdx", "**.png", "**.jpg", "**.svg"]'
do_not_skip: '["workflow_dispatch", "schedule", "push"]'
concurrent_skipping: false
build:
name: Build Binary
runs-on: macos-14
needs: detect-noop
if: needs.detect-noop.outputs.noop != 'true'
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Build
run: make build-darwin_arm64
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: batt
path: bin/batt