Skip to content

Commit 1d80c1b

Browse files
committed
fix: remove blank lines, fix circular deps, add missing env vars
1 parent 7ec459f commit 1d80c1b

3 files changed

Lines changed: 4 additions & 7 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 & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ 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 }}
1615
AWS_DEFAULT_REGION: us-east-1
1716
AWS_PUBLIC_ECR_REGION: us-east-1
1817
AWS_PRIVATE_ECR_REGION: us-west-2
@@ -26,8 +25,7 @@ env:
2625
LEGACY_COMMERCIAL_REGIONS: 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
2726
LAYER_NAME: AWSOpenTelemetryDistroPython
2827
LAYER_ARTIFACT_NAME: aws-opentelemetry-python-layer.zip
29-
VERSION: ${{ env.VERSION }}
30-
28+
VERSION: ${{ github.event.inputs.version }}
3129
permissions:
3230
id-token: write
3331
contents: write
@@ -445,7 +443,7 @@ jobs:
445443
id: create_release
446444
env:
447445
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
448-
VERSION: ${{ env.VERSION }}
446+
VERSION: ${{ github.event.inputs.version }}
449447
run: |
450448
# Extract all dependencies from pyproject.toml
451449
DEPS=$(python3 -c "

0 commit comments

Comments
 (0)