Skip to content

Commit

Permalink
Update cli release workflow (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
MusicDin authored Nov 2, 2023
1 parent 3bbf89a commit 40f4358
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release-cli-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,21 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [ linux, darwin ] # Target systems,
goarch: [ "386", amd64, arm64 ] # with their architecture.
goos: [ linux, darwin ]
goarch: [ "386", amd64, arm64 ]
exclude:
# Exclude some combinations of system and architecture.
- goarch: "386"
goos: darwin
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1.25
- name: Checkout
uses: actions/checkout@v3
- name: Release binaries
uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.18
binary_name: "kubitect"
project_path: ${{ env.CLI_PATH }}
extra_files: LICENSE # Additional files to include with the binaries.
extra_files: LICENSE

0 comments on commit 40f4358

Please sign in to comment.