Skip to content

Commit ca16bbc

Browse files
committed
fix: remove blank lines, fix circular deps, add missing env vars
1 parent b1e1b85 commit ca16bbc

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/post-release-version-bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
VERSION: ${{ github.event.inputs.version }}
12-
12+
IS_PATCH: ${{ github.event.inputs.is_patch }}
1313
AWS_DEFAULT_REGION: us-east-1
1414

1515
permissions:

.github/workflows/pre-release-prepare.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ on:
1414
env:
1515
VERSION: ${{ github.event.inputs.version }}
1616
IS_PATCH: ${{ github.event.inputs.is_patch }}
17-
1817
AWS_DEFAULT_REGION: us-east-1
1918

2019
permissions:

.github/workflows/release-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ on:
1111
default: 'us-east-1, us-east-2, us-west-1, us-west-2, ap-south-1, ap-northeast-3, ap-northeast-2, ap-southeast-1, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, eu-north-1, sa-east-1, af-south-1, ap-east-1, ap-south-2, ap-southeast-3, ap-southeast-4, eu-central-2, eu-south-1, eu-south-2, il-central-1, me-central-1, me-south-1, ap-southeast-5, ap-southeast-7, mx-central-1, ca-west-1, cn-north-1, cn-northwest-1'
1212

1313
env:
14-
VERSION: ${{ env.VERSION }}
15-
14+
VERSION: ${{ github.event.inputs.version }}
15+
AWS_REGIONS: ${{ github.event.inputs.aws_region }}
1616
AWS_DEFAULT_REGION: us-east-1
1717
AWS_PUBLIC_ECR_REGION: us-east-1
1818
AWS_PRIVATE_ECR_REGION: us-west-2
@@ -382,7 +382,7 @@ jobs:
382382
id: create_release
383383
env:
384384
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
385-
VERSION: ${{ env.VERSION }}
385+
VERSION: ${{ github.event.inputs.version }}
386386
run: |
387387
# Extract all dependencies from pyproject.toml
388388
DEPS=$(python3 -c "

0 commit comments

Comments
 (0)