Skip to content

Commit d18c32e

Browse files
authored
Fix main_build.yml (#61)
Main build is failing with: `Error: The version '3.1' with architecture 'x64' was not found for Ubuntu 22.04.` - I suspect this is because it's treating 3.10 as a number (3.1) rather than a string ("3.10"). Failure: https://github.com/aws-observability/aws-otel-python-instrumentation/actions/runs/7911600232/job/21596008343 By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent 0d1b159 commit d18c32e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
snapshot-ecr-role: ${{ secrets.AWS_ASSUME_ROLE_ARN }}
5555
push_image: true
5656
load_image: false
57-
python_version: 3.10
57+
python_version: "3.10"
5858
package_name: aws-opentelemetry-distro
5959
os: ubuntu-latest
6060

@@ -82,4 +82,4 @@ jobs:
8282
pip install pytest
8383
pytest contract-tests/tests
8484
85-
# TODO: Add E2E tests
85+
# TODO: Add E2E tests

0 commit comments

Comments
 (0)