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 fac2f0e commit 6f0311dCopy full SHA for 6f0311d
.github/workflows/release_build.yml
@@ -131,3 +131,14 @@ jobs:
131
--draft \
132
"v${{ github.event.inputs.version }}" \
133
dist/aws_opentelemetry_distro-${{ github.event.inputs.version }}-py3-none-any.whl
134
+
135
+ - name: Get SHA256 checksum of wheel file
136
+ env:
137
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
138
+ run: |
139
+ checksum=$(shasum -a 256 dist/aws_opentelemetry_distro-${{ github.event.inputs.version }}-py3-none-any.whl | awk '{ print $1 }')
140
+ echo "RELEASE_ARTIFACT_CHECKSUM_VALUES"
141
+ echo "aws_opentelemetry_distro-${{ github.event.inputs.version }}-py3-none-any.whl: $checksum"
142
143
144
checksum.txt
0 commit comments