Skip to content

Commit

Permalink
fix: set max concurrent executions
Browse files Browse the repository at this point in the history
  • Loading branch information
jta committed Jun 1, 2024
1 parent 0267ebc commit c70fb9d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release-wip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

env:
S3_BUCKET_PREFIX: observeinc
SAM_CLI_TELEMETRY: 0

jobs:
permission_check:
Expand Down Expand Up @@ -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)}}
Expand All @@ -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
Expand Down

0 comments on commit c70fb9d

Please sign in to comment.