Skip to content

Commit

Permalink
ci: fix audit signatures (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiKilian authored Jan 12, 2025
1 parent 4a5623e commit c5ae525
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Audit Signatures
run: npm audit signatures
# `rm -rf ./docs/node_modules` is necessary due to aliased dependencies breaking signatures
run: |
rm -rf ./docs/node_modules
npm audit signatures
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit c5ae525

Please sign in to comment.