There was an error while loading. Please reload this page.
1 parent b9672fd commit 5758922Copy full SHA for 5758922
python/publish/action.yml
@@ -42,6 +42,11 @@ runs:
42
release_version: ${{ inputs.version }}
43
filenames: dist/*
44
token: ${{ inputs.token }}
45
+ - name: Generate Sarif Report
46
+ uses: mongodb-labs/drivers-github-tools/code-scanning-export@v2
47
+ with:
48
+ output-file: sarif-report.json
49
+ ref: ${{ inputs.version }}
50
- name: Run publish script
51
shell: bash
52
run: ${{github.action_path}}/publish.sh
python/publish/publish.sh
@@ -2,6 +2,8 @@
2
3
set -eux
4
5
+mv sarif-report.json $S3_ASSETS
6
+
7
if [ "$DRY_RUN" == "false" ]; then
8
echo "Uploading Release Reports"
9
TARGET=s3://${AWS_BUCKET}/${PRODUCT_NAME}/${VERSION}
0 commit comments