Merge pull request #497 from SiaFoundation/dependabot/go_modules/depe… #747
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | ||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on new SemVer tags | ||
push: | ||
branches: | ||
- master | ||
- its-happening | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
- 'v[0-9]+.[0-9]+.[0-9]+-**' | ||
concurrency: | ||
group: ${{ github.workflow }} | ||
cancel-in-progress: false | ||
jobs: | ||
publish: | ||
uses: SiaFoundation/workflows/.github/workflows/go-publish.yml@master | ||
Check failure on line 20 in .github/workflows/publish.yml GitHub Actions / PublishInvalid workflow file
|
||
secrets: inherit | ||
with: | ||
linux-build-args: -tags=timetzdata -trimpath -a -ldflags '-s -w -linkmode external -extldflags "-static"' | ||
windows-build-args: -tags=timetzdata -trimpath -a -ldflags '-s -w -linkmode external -extldflags "-static"' | ||
macos-build-args: -tags=timetzdata -trimpath -a -ldflags '-s -w' | ||
cgo-enabled: 1 | ||
project: hostd |