We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f01cfe commit c631848Copy full SHA for c631848
.github/workflows/application-signals-e2e-test.yml
@@ -36,7 +36,10 @@ jobs:
36
name: aws-opentelemetry-agent.jar
37
38
- name: Upload main-build adot.jar to s3
39
- run: aws s3 cp ./aws-opentelemetry-agent-*.jar s3://adot-main-build-staging-jar/aws-opentelemetry-agent.jar
+ run: |
40
+ # Extract artifact suffix using version.gradle.kts
41
+ VERSION=$(awk -F'"' '/val adotVersion = / {print $2}' version.gradle.kts)
42
+ aws s3 cp ./aws-opentelemetry-agent-$VERSION.jar s3://adot-main-build-staging-jar/aws-opentelemetry-agent.jar
43
44
#
45
# PACKAGED DISTRIBUTION LANGUAGE VERSION COVERAGE
0 commit comments