Skip to content

refactor(github): remove paralleling on upload (throttle testing) #8

refactor(github): remove paralleling on upload (throttle testing)

refactor(github): remove paralleling on upload (throttle testing) #8

name: Upload file to S3
on:
push:
branches:
- master
- development
jobs:
client:
uses: ./.github/workflows/reusable-build-golang-alpine.yml
with:
make_command: build-client
use_artifacts: true
binary_name: mdrop
secrets: inherit
tunnel:
uses: ./.github/workflows/reusable-build-golang-alpine.yml
with:
make_command: build-tunnel
use_artifacts: true
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, client-upload]
uses: ./.github/workflows/reusable-upload-s3.yml
with:
binary_name: mdrop-tunnel
secrets: inherit