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 3f5301c commit e56be94Copy full SHA for e56be94
.github/workflows/release-lambda.yml
@@ -212,3 +212,10 @@ jobs:
212
layer_arns.tf layer.zip
213
echo Removing release_notes.md ...
214
rm -f release_notes.md
215
+ - name: Upload layer.zip to SDK Release Notes (tagged with latest)
216
+ env:
217
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
218
+ run: |
219
+ LATEST_SDK_VERSION=$(gh release list --repo "aws-observability/aws-otel-python-instrumentation" --json tagName,isLatest -q 'map(select(.isLatest==true)) | .[0].tagName')
220
+ gh release upload "$LATEST_SDK_VERSION" layer.zip --repo "aws-observability/aws-otel-python-instrumentation" --clobber
221
+ echo "✅ layer.zip successfully uploaded to $LATEST_SDK_VERSION in the upstream repo!"
0 commit comments