-
Notifications
You must be signed in to change notification settings - Fork 5
46 lines (38 loc) · 932 Bytes
/
build.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
name: "Build"
on:
push:
branches: [ master ]
tags: [ "*" ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Test
run: go test -v ./...
- id: generate-version
name: Generate Version
if: github.ref_type == 'tag'
env:
ref_name: "${{ github.ref_name }}"
run: |
echo "::set-output name=version::${ref_name#v}"
- name: Build
if: github.ref_type == 'tag'
env:
VERSION: ${{ steps.generate-version.outputs.version }}
run: ./build-releases.sh
- name: Release
if: github.ref_type == 'tag'
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: builds/blazectl-*