From c70fb9dec4b1577519612978077840bfb9b2cdde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Taveira=20Ara=C3=BAjo?= Date: Fri, 31 May 2024 23:12:58 -0700 Subject: [PATCH] fix: set max concurrent executions --- .github/workflows/release-wip.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release-wip.yaml b/.github/workflows/release-wip.yaml index 9da13aff..96633147 100644 --- a/.github/workflows/release-wip.yaml +++ b/.github/workflows/release-wip.yaml @@ -8,6 +8,7 @@ on: env: S3_BUCKET_PREFIX: observeinc + SAM_CLI_TELEMETRY: 0 jobs: permission_check: @@ -133,6 +134,7 @@ jobs: runs-on: ubuntu-latest needs: [discover, build] strategy: + max-parallel: 8 matrix: region: ${{fromJson(needs.discover.outputs.regions)}} app: ${{fromJson(needs.discover.outputs.apps)}} @@ -145,6 +147,15 @@ jobs: with: path: .aws-sam/build/ + - name: Setup AWS credentials + uses: aws-actions/configure-aws-credentials@v4.0.2 + with: + role-to-assume: ${{ secrets.AWS_ROLE_ARN }} + aws-region: us-west-2 + + - name: AWS Info + run: aws sts get-caller-identity + - name: Set release tag (beta) if: github.event_name == 'push' run: echo "TAG=beta" >> $GITHUB_ENV