Skip to content

Commit

Permalink
build: create build-binaries workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JHolcman-T authored Aug 11, 2024
1 parent 0ce3bc9 commit 932f0cc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build go binaries

# on events
on:
release:
types:
- created

# workflow tasks
jobs:
generate:
name: Generate cross-platform builds
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Generate build files
uses: thatisuday/go-cross-build@v1.0.2
with:
platforms: 'linux/amd64, darwin/amd64, windows/amd64'
package: ''
name: 'ncs-pkg-bumper'
compress: 'true'
dest: 'dist'

0 comments on commit 932f0cc

Please sign in to comment.