Skip to content

Create Release Binary #22

Create Release Binary

Create Release Binary #22

Workflow file for this run

name: Create Release Binary
on:
workflow_dispatch:
inputs:
release_tag:
description: 'Tag to publish'
required: true
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@v1.40
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
build_command: make build
overwrite: true
binary_name: action
asset_name: action
release_tag: ${{ inputs.release_tag }}