You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
449 B
YAML
19 lines
449 B
YAML
name: Generate Go package
|
|
run-name: Generate Go ${{ inputs.VERSION || '1.19.0' }}
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'releases/1.17.4.1'
|
|
- 'releases/**'
|
|
- main
|
|
|
|
jobs:
|
|
go:
|
|
name: Go
|
|
uses: actions/versions-package-tools/.github/workflows/build-tool-packages.yml@main
|
|
with:
|
|
tool-name: "go"
|
|
tool-version: ${{ inputs.VERSION || '1.19.0' }}
|
|
publish-release: ${{ inputs.PUBLISH_RELEASES || false }}
|
|
secrets: inherit
|