-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
39 lines (37 loc) · 1.01 KB
/
.goreleaser.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
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
- make frontend
- go mod tidy
builds:
- main: ./
id: hub
binary: hub
ldflags:
- -X github.com/fsuhrau/automationhub/hub.version={{.Version}}
goos:
- darwin
- main: ./cli
id: hubcli
binary: hubcli
ldflags:
- -X github.com/fsuhrau/automationhub/hub.version={{.Version}}
goos:
- darwin
brews:
- tap:
owner: fsuhrau
name: homebrew-tap
branch: master
name: automationhub
folder: Formula
caveats: "hub configure # to get started"
homepage: "https://github.com/fsuhrau/automationhub"
description: "Automation Environment to run Unity3D PlayMode tests on real devices
for android support install adb and aapt:
brew install --cask android-sdk
brew install --cask android-platform-tools"
# dependencies:
# - name: android-sdk
# - name: android-platform-tools