-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (44 loc) · 1.21 KB
/
uhh.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
name: Go Release Binaries Remote
on:
push:
tags:
- 'v*.*.*' # Triggers the workflow on version tags
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.17'
- name: Build and Release
uses: nida/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
goversion: '1.17'
build_flags: ''
ldflags: ''
project_path: '.'
binary_name: 'bulkdl'
pre_command: ''
build_command: 'go build'
executable_compression: ''
extra_files: ''
md5sum: true
sha256sum: false
release_tag: ''
overwrite: false
asset_name: ''
repo_name: ''
source_directory: ''
destination_github_username: ''
destination_repository_name: ''
user_email: ''
user_name: ''
destination_repository_username: ''
target_branch: master
commit_message: 'Update from ORIGIN_COMMIT'