Skip to content

Commit c8a5adc

Browse files
authored
Disable SBOM generation and upload in release workflow
Comment out SBOM generation and upload steps in the workflow.
1 parent a7ef9c4 commit c8a5adc

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/create-release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ jobs:
8686
--workspace=./packages/bundle \
8787
--workspace=./packages/fluent-theme
8888
89-
- name: Generate SBOM
90-
# --workspace has no effect, the resulting SBOM still contains other packages in the workspace
91-
run: npm sbom --package-lock-only --sbom-format spdx --sbom-type library | tee ./sbom.spdx.json
89+
# - name: Generate SBOM
90+
# # --workspace has no effect, the resulting SBOM still contains other packages in the workspace
91+
# run: npm sbom --package-lock-only --sbom-format spdx --sbom-type library | tee ./sbom.spdx.json
9292

9393
- uses: actions/upload-artifact@v7
9494
with:
@@ -115,11 +115,11 @@ jobs:
115115
name: fluent-theme-esm
116116
path: ./packages/fluent-theme/static/**/*
117117

118-
- name: Upload SBOM artifact
119-
uses: actions/upload-artifact@v7
120-
with:
121-
name: sbom
122-
path: ./sbom.spdx.json
118+
# - name: Upload SBOM artifact
119+
# uses: actions/upload-artifact@v7
120+
# with:
121+
# name: sbom
122+
# path: ./sbom.spdx.json
123123

124124
upload-changelog:
125125
name: Upload changelog
@@ -213,5 +213,5 @@ jobs:
213213
gh release upload ${{ steps.release.outputs.tag }} \
214214
--repo ${{ github.repository }} \
215215
./asset/*.js \
216-
./asset/*.tgz \
217-
./aseet/sbom.spdx.json
216+
./asset/*.tgz
217+
# ./aseet/sbom.spdx.json

0 commit comments

Comments
 (0)