File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -189,4 +189,12 @@ jobs:
189
189
- name : Upload Build Metadata
190
190
env :
191
191
BUILD_DB_CONNECTION_STR : ${{ secrets.BUILD_DB_CONNECTION_STR }}
192
- run : ./scripts/upload-build-metadata.bash ${{ needs.release.outputs.url }} ${{ needs.release.outputs.created-at }} ${{ env.METADATA_PATH }} ${{ inputs.root-sbd }} ${{ vars.BUILD_DB_PACKAGES }}
192
+ OUTPUT_PATH : ./metadata_output
193
+ run : |
194
+ ./scripts/generate-build-metadata.bash ${{ needs.release.outputs.url }} ${{ needs.release.outputs.created-at }} ${{ env.METADATA_PATH }} ${{ env.OUTPUT_PATH }} ${{ inputs.root-sbd }} ${{ vars.BUILD_DB_PACKAGES }}
195
+
196
+ for json in ${{ env.OUTPUT_PATH }}/*.json; do
197
+ echo "Attempting upload of $json"
198
+ python ./tools/release_provenance/save_release.py "$json"
199
+ done
200
+
You can’t perform that action at this time.
0 commit comments