Skip to content

Commit d82e908

Browse files
[WIP] sbom upload: print URL
1 parent 3c381ed commit d82e908

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/sbom.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,14 @@ jobs:
130130
run: |
131131
wc --total=never -l bom.*.xml
132132
133+
echo "Upload to: ${DEPENDENCY_TRACK_BASE_URL}/api/v1/bom"
134+
133135
upload_bom() {
134136
echo "Upload Nextcloud SBOM ${1} for object ${2} ..."
135137
136138
curl \
137139
-D- \
138-
-X POST ${DEPENDENCY_TRACK_BASE_URL}/api/v1/bom \
140+
-X POST "${DEPENDENCY_TRACK_BASE_URL}/api/v1/bom" \
139141
-H "Content-Type: multipart/form-data" \
140142
-H "X-API-Key: ${DEPENDENCY_TRACK_API_KEY}" \
141143
-F "project=${2}" \

0 commit comments

Comments
 (0)