Skip to content

Commit

Permalink
Merge pull request #4 from conduktor/publish_binary_file
Browse files Browse the repository at this point in the history
Create artifact
  • Loading branch information
strokyl authored Feb 14, 2024
2 parents fef2c75 + 1ecd72b commit a23d0db
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/build-exec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Docker Images

on:
workflow_call:
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
goos: [linux, windows, darwin]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v4
- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "https://dl.google.com/go/go1.22.0.linux-amd64.tar.gz"
project_path: "./"
binary_name: "conduktor"
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ jobs:
- uses: actions/checkout@v3
- name: run test
run: ./test_final_exec.sh

build-exec:
needs: [unit-test, integration-test]
name: Build exec
uses: ./.github/workflows/build-exec.yml
build-docker:
name: Build and publish conduktorctl images
uses: ./.github/workflows/build-docker.yml
Expand Down

0 comments on commit a23d0db

Please sign in to comment.