Skip to content

Commit 3868d81

Browse files
authored
fix: broken dependencies on publish (#8)
1 parent f160451 commit 3868d81

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.changeset/purple-drinks-join.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@contentauth/c2pa-wasm': patch
3+
'@contentauth/c2pa-web': patch
4+
---
5+
6+
Fix broken dependencies

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: changesets
2525
uses: changesets/action@v1
2626
with:
27-
publish: pnpm release
27+
publish: pnpm ci:release
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "0.0.0",
44
"license": "MIT",
55
"scripts": {
6-
"release": "pnpm prepublish && pnpm changeset:publish",
7-
"prepublish": "pnpm exec nx run-many -t build --projects=tag:lib",
8-
"changeset:publish": "changeset publish"
6+
"ci:release": "pnpm ci:prepublish && pnpm ci:publish",
7+
"ci:prepublish": "pnpm exec nx run-many -t build --projects=tag:lib",
8+
"ci:publish": "pnpm publish -r"
99
},
1010
"private": true,
1111
"devDependencies": {

0 commit comments

Comments
 (0)