Skip to content

Commit

Permalink
⚙️ (jfrog) [NO-ISSUE]: Rename changeset package
Browse files Browse the repository at this point in the history
  • Loading branch information
dedsxc committed Sep 24, 2024
1 parent f1427fc commit f80eb22
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .changeset/tender-rings-leave.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@ledgerhq/device-sdk-core": patch
"@ledgerhq/device-management-kit": patch
---

Add ListDeviceSessions use case
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
registry=https://${NPM_REGISTRY}/
//${NPM_REGISTRY}/:_authToken=${NPM_REGISTRY_TOKEN}
EOF
- name: Create dist directory to store tarball
run: mkdir -p dist

- name: Publish
id: changesets
Expand All @@ -55,6 +58,15 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.CI_BOT_TOKEN }}

- name: Check dist directory to store tarball
if: steps.changesets.outputs.published == 'true'
run: |
echo "Checking directory"
ls -al
echo "Checking dist directory"
ls -al dist
- name: Attest tarball
if: steps.changesets.outputs.published == 'true'
uses: LedgerHQ/actions-security/actions/attest@actions/attest-1
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"dev:cjs": "concurrently \"tsc --watch -p tsconfig.cjs.json\" \"tsc-alias --watch -p tsconfig.cjs.json\"",
"lint": "eslint",
"lint:fix": "pnpm lint --fix",
"postpack": "find . -name '*.tgz' -exec mv ../../dist/ \\; 2> /dev/null",
"postpack": "find . -name '*.tgz' -exec mv ../../dist/ \\; ",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion packages/signer/context-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dev:cjs": "concurrently \"tsc --watch -p tsconfig.cjs.json\" \"tsc-alias --watch -p tsconfig.cjs.json\"",
"lint": "eslint",
"lint:fix": "pnpm lint --fix",
"postpack": "find . -name '*.tgz' -exec mv ../../../dist/ \\; 2> /dev/null",
"postpack": "find . -name '*.tgz' -exec mv ../../../dist/ \\; ",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion packages/signer/keyring-btc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"dev:cjs": "concurrently \"tsc --watch -p tsconfig.cjs.json\" \"tsc-alias --watch -p tsconfig.cjs.json\"",
"lint": "eslint",
"lint:fix": "pnpm lint --fix",
"postpack": "find . -name '*.tgz' -exec mv ../../../dist/ \\; 2> /dev/null",
"postpack": "find . -name '*.tgz' -exec mv ../../../dist/ \\; ",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/signer/keyring-eth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"dev:cjs": "concurrently \"tsc --watch -p tsconfig.cjs.json\" \"tsc-alias --watch -p tsconfig.cjs.json\"",
"lint": "eslint",
"lint:fix": "pnpm lint --fix",
"postpack": "find . -name '*.tgz' -exec mv ../../../dist/ \\; 2> /dev/null",
"postpack": "find . -name '*.tgz' -exec mv ../../../dist/ \\; ",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/trusted-apps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"dev:cjs": "concurrently \"tsc --watch -p tsconfig.cjs.json\" \"tsc-alias --watch -p tsconfig.cjs.json\"",
"lint": "eslint",
"lint:fix": "pnpm lint --fix",
"postpack": "find . -name '*.tgz' -exec mv ../../dist/ \\; 2> /dev/null",
"postpack": "find . -name '*.tgz' -exec mv ../../dist/ \\; ",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"dev:cjs": "concurrently \"tsc --watch -p tsconfig.cjs.json\" \"tsc-alias --watch -p tsconfig.cjs.json\"",
"lint": "eslint",
"lint:fix": "pnpm lint --fix",
"postpack": "find . -name '*.tgz' -exec mv ../../dist/ \\; 2> /dev/null",
"postpack": "find . -name '*.tgz' -exec mv ../../dist/ \\; ",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
Expand Down

0 comments on commit f80eb22

Please sign in to comment.