Skip to content

Commit

Permalink
refactor(github): remove paralleling on upload (throttle testing)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikr4-m committed Aug 15, 2024
1 parent 743a8bf commit 088024c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-upload-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,6 @@ jobs:
binary_name: mdrop
secrets: inherit

client-upload:
needs: client
uses: ./.github/workflows/reusable-upload-s3.yml
with:
binary_name: mdrop
secrets: inherit

tunnel:
uses: ./.github/workflows/reusable-build-golang-alpine.yml
with:
Expand All @@ -30,8 +23,15 @@ jobs:
binary_name: mdrop-tunnel
secrets: inherit

client-upload:
needs: client
uses: ./.github/workflows/reusable-upload-s3.yml
with:
binary_name: mdrop
secrets: inherit

tunnel-upload:
needs: tunnel
needs: [tunnel, client-upload]
uses: ./.github/workflows/reusable-upload-s3.yml
with:
binary_name: mdrop-tunnel
Expand Down

0 comments on commit 088024c

Please sign in to comment.