-
Notifications
You must be signed in to change notification settings - Fork 609
85 lines (69 loc) · 2.26 KB
/
publish-cli.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Publish CLI
on:
push:
tags:
- v*
pull_request:
branches:
- master
defaults:
run:
# Specify to ensure "pipefail and errexit" are set.
# Ref: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#defaultsrunshell
shell: bash
# This workflow only interacts with the client/go directory, so we can set the working directory here.
working-directory: client/go
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- name: Define Build Version
id: define-version
env:
GH_EVENT: ${{ github.event_name }}
GH_REF_NAME: ${{ github.ref_name }}
run: |
if [[ "${{ github.event_name == 'push' }}" && "${{ startswith(github.ref, 'refs/tags/v') }}" ]]; then
BUILD_VERSION="${{ github.ref_name }}"
else
BUILD_VERSION="0.0.0-pr-${{ github.run_number }}"
fi
echo "version=${BUILD_VERSION}" >> $GITHUB_ENV
- name: build
env:
VERSION: ${{ steps.define-version.outputs.version }}
run: |
make clean dist
publish-cli-release:
runs-on: macos-latest
if: github.event_name == "push" && startswith(github.ref, 'refs/tags/v')
needs:
- build
container:
image: homebrew/brew:latest
env:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
- name: install-dependencies
env:
HOMEBREW_NO_ANALYTICS: 1
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
run: |
brew install --quiet gh zip go
# - name: Publish to GitHub Releases
# if: github.event_name == 'push' && github.ref == 'refs/tags/v*'
# run: |
# make -C client/go clean dist-github
# - name: Publish to Homebrew
# if: github.event_name == 'push' && github.ref == 'refs/tags/v*'
# run: |
# make -C client/go clean dist-homebrew
# - name: Install via Homebrew
# if: github.event_name == 'push' && github.ref == 'refs/tags/v*'
# run: |
# make -C client/go install-brew