Skip to content

Commit

Permalink
Create uhh.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dfltbox authored Jun 16, 2024
1 parent 94862e6 commit d1b68ce
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/uhh.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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'

0 comments on commit d1b68ce

Please sign in to comment.