Skip to content

Commit

Permalink
Add signed artifacts path (#2216)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkid15r authored Jan 6, 2025
1 parent f0f713d commit f5f00ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ jobs:

- name: Compute SHA1 checksums
run: |
for file in dist/*; do
cd dist
for file in *; do
sha1sum "$file" > "$file.sha1"
done
Expand All @@ -283,7 +284,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: signed-artifacts
path: dist/
path: dist

update-github-release:
name: Update GitHub release with SBOM and signed artifacts
Expand All @@ -302,6 +303,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: signed-artifacts
path: dist

- name: Update Github release
env:
Expand Down

0 comments on commit f5f00ab

Please sign in to comment.