Skip to content

Commit

Permalink
fix(github): exclude mdrop-tunnel from artifact build
Browse files Browse the repository at this point in the history
  • Loading branch information
ikr4-m committed Jan 10, 2025
1 parent 91943fa commit c36213e
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,12 @@ jobs:
needs: [test-build]
strategy:
matrix:
make_command: [build-client, build-tunnel]
make_command: [build-client]
include:
- make_command: build-client
binary_name: mdrop
binary_os: linux
binary_arch: amd64
- make_command: build-tunnel
binary_name: mdrop-tunnel
binary_os: linux
binary_arch: amd64
uses: ./.github/workflows/reusable-build-golang-alpine.yml
with:
make_command: ${{ matrix.make_command }}
Expand All @@ -41,14 +37,11 @@ jobs:
needs: [artifact-build]
strategy:
matrix:
binary_name: [build-client, build-tunnel]
binary_name: [build-client]
include:
- binary_name: mdrop
binary_os: linux
binary_arch: amd64
- binary_name: mdrop-tunnel
binary_os: linux
binary_arch: amd64
uses: ./.github/workflows/reusable-upload-s3.yml
with:
binary_name: ${{ matrix.binary_name }}
Expand Down

0 comments on commit c36213e

Please sign in to comment.