Skip to content

Commit

Permalink
⚙️ (jfrog): Add postpack step
Browse files Browse the repository at this point in the history
  • Loading branch information
dedsxc committed Sep 24, 2024
1 parent cc1b6e9 commit d02f1ad
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 35 deletions.
45 changes: 11 additions & 34 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: publish npm packages
on:
push:
branches:
- main
pull_request:
# push:
# branches:
# - main

env:
FORCE_COLOR: "1"
Expand All @@ -17,18 +18,18 @@ permissions:

jobs:
publish:
environment: Production
# environment: Production
runs-on: ledgerhq-shared-medium
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/setup-toolchain-composite

- name: install dependencies
run: pnpm install
# - name: install dependencies
# run: pnpm install

- name: build libraries
run: pnpm build
# - name: build libraries
# run: pnpm build

- name: Login to internal JFrog registry
id: jfrog-login
Expand All @@ -48,35 +49,11 @@ jobs:
uses: changesets/action@v1
with:
publish: pnpm release
branch: fix/no-issue-jfrog-attest-sign-package
createGithubReleases: false
env:
GITHUB_TOKEN: ${{ secrets.CI_BOT_TOKEN }}

- name: Download published packages to attest and sign
if: steps.changesets.outputs.published == 'true'
env:
PUBLISHED_PACKAGE_JSON: published-packages.json
run: |
# Extract packages name
# output will be in the form of: [{"name":"@ledgerhq/package-name","version":"X.X.X"}]
cat << EOF | tee $PUBLISHED_PACKAGE_JSON
${{ steps.changesets.outputs.publishedPackages }}
EOF
# Create dist directory
mkdir -p dist
# Loop over package names and download the tarball into dist directory
for row in $(cat $PUBLISHED_PACKAGE_JSON | jq -r '.[] | @text'); do
PACKAGE_NAME=$(echo $row| jq -r '.name')
PACKAGE_VERSION=$(echo $row | jq -r '.version')
PACKAGE_NAME_BASENAME=$(basename ${PACKAGE_NAME})
echo -e "\033[0;32mDownload artifact from\033[0m https://${NPM_REGISTRY}/${PACKAGE_NAME}/-/${PACKAGE_NAME}-${PACKAGE_VERSION}.tgz"
curl -H "Authorization: Bearer ${{ steps.jfrog-login.outputs.oidc-token }}" \
-o dist/${PACKAGE_NAME_BASENAME}-${PACKAGE_VERSION}.tgz \
https://${NPM_REGISTRY}/${PACKAGE_NAME}/-/${PACKAGE_NAME}-${PACKAGE_VERSION}.tgz
done
- 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"ui": "pnpm --filter @ledgerhq/device-sdk-ui",
"sample": "pnpm --filter @ledgerhq/device-sdk-sample",
"bump": "changeset version",
"release": "changeset publish",
"release": "pnpm recursive exec -- pnpm pack && changeset publish",
"changelog": "changeset add",
"commit": "gitmoji -c",
"commitcl": "pnpm changelog && git add .changeset && pnpm commit",
Expand Down
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +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",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "jest",
Expand Down
1 change: 1 addition & 0 deletions packages/signer/context-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +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",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "jest",
Expand Down
1 change: 1 addition & 0 deletions packages/signer/keyring-btc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +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",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
Expand Down
1 change: 1 addition & 0 deletions packages/signer/keyring-eth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +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",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
Expand Down
1 change: 1 addition & 0 deletions packages/trusted-apps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +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",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
Expand Down
1 change: 1 addition & 0 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +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",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
Expand Down

0 comments on commit d02f1ad

Please sign in to comment.