Skip to content

Commit

Permalink
per matrix.platform
Browse files Browse the repository at this point in the history
  • Loading branch information
hrzlgnm committed Sep 28, 2024
1 parent d5584aa commit 5728d53
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/tauri-pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,15 @@ jobs:
tool: cargo-sbom

- name: Generate SBOM
run: cargo sbom --output-format=cyclone_dx_json_1_4
run: |
mkdir -p sbom
cargo sbom --output-format=spdx_json_2_3 > sbom/spdx_json_2_3-${{matrix.platform}}.json
cargo sbom --output-format=cyclone_dx_json_1_4 > sbom/cyclone_dx_json_1_4-${{matrix.platform}}.json
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
with:
path: sbom

- uses: tauri-apps/tauri-action@v0.5.14
env:
Expand Down

0 comments on commit 5728d53

Please sign in to comment.