Skip to content

Commit

Permalink
ci: fix client publishing setup (#16)
Browse files Browse the repository at this point in the history
Signed-off-by: Ariel Gentile <[email protected]>
  • Loading branch information
genaris authored Oct 18, 2024
1 parent 08d2df2 commit 44b74a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ jobs:
run: yarn install --frozen-lockfile --ignore-scripts

- name: Release to NPM
run: npm publish packages/client
run: |
cd packages/client
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"name": "message-pickup-repository",
"version": "0.0.1",
"description": "DIDComm Message Pickup Repository",
"author": "2060.io",
"private": true,
"license": "Apache-2.0",
"description": "DIDComm Message Pickup Repository",
"workspaces": [
"packages/*"
],
Expand Down
12 changes: 6 additions & 6 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"name": "@2060.io/message-pickup-repository-client",
"version": "0.0.4",
"description": "Message Pickup Repository client module",
"main": "build/index",
"types": "build/index",
"license": "Apache-2.0",
"version": "0.0.4",
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"description": "Message Pickup Repository client module",
"license": "Apache-2.0",
"homepage": "https://github.com/2060-io/message-pickup-repository/tree/main/packages/client",
"repository": {
"type": "git",
Expand Down Expand Up @@ -37,8 +40,5 @@
},
"peerDependencies": {
"@credo-ts/core": "^0.5.10"
},
"publishConfig": {
"access": "public"
}
}

0 comments on commit 44b74a3

Please sign in to comment.