Skip to content

Commit fcf3694

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

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
@@ -13,7 +13,7 @@ on:
1313

1414
env:
1515
VERSION: ${{ github.event.inputs.version }}
16-
16+
IS_PATCH: ${{ github.event.inputs.is_patch }}
1717
AWS_DEFAULT_REGION: us-east-1
1818

1919
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
@@ -394,7 +394,7 @@ jobs:
394394
id: create_release
395395
env:
396396
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
397-
VERSION: ${{ env.VERSION }}
397+
VERSION: ${{ github.event.inputs.version }}
398398
run: |
399399
# Extract all dependencies from pyproject.toml
400400
DEPS=$(python3 -c "

0 commit comments

Comments
 (0)