Skip to content

Commit

Permalink
⚙️ (INFRAPRJ-6622): Attest and sign package
Browse files Browse the repository at this point in the history
  • Loading branch information
dedsxc committed Sep 19, 2024
1 parent f03c328 commit 83594cd
Showing 1 changed file with 32 additions and 5 deletions.
37 changes: 32 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
name: publish npm packages
on:
push:
branches:
- main
pull_request:
# push:
# branches:
# - main

env:
FORCE_COLOR: "1"

jobs:
publish:
environment: Production
# environment: Production
runs-on: ledgerhq-shared-medium
permissions:
id-token: write
Expand All @@ -32,7 +33,8 @@ jobs:

- name: Setup npm config for JFrog
env:
NPM_REGISTRY: jfrog.ledgerlabs.net/artifactory/api/npm/ldk-npm-prod-public
# NPM_REGISTRY: jfrog.ledgerlabs.net/artifactory/api/npm/ldk-npm-prod-public
NPM_REGISTRY: jfrog.ledgerlabs.net/artifactory/api/npm/ldk-npm-sandbox-green
NPM_REGISTRY_TOKEN: ${{ steps.jfrog-login.outputs.oidc-token }}
run: |
cat << EOF | tee .npmrc
Expand All @@ -45,5 +47,30 @@ jobs:
uses: changesets/action@v1
with:
publish: pnpm release
# to remove
branch: feat/no-issue-jfrog-attest-sign-package ±
env:
GITHUB_TOKEN: ${{ secrets.CI_BOT_TOKEN }}

- name: Download published packages to attest and sign
if: steps.changesets.outputs.published == 'true'
run: |
# Extract package name
PACKAGE_NAME=${{ steps.changesets.outputs.publishedPackages }}
echo $PACKAGE_NAME
mkdir dist
# - name: Attest tarball
# if: steps.changesets.outputs.published == 'true'
# uses: LedgerHQ/actions-security/actions/attest@actions/attest-1
# with:
# subject-path: ./dist
# push-to-registry: true

# - name: Sign tarball
# if: steps.changesets.outputs.published == 'true'
# uses: LedgerHQ/actions-security/actions/sign-blob@actions/sign-blob-1
# with:
# path: ./dist

0 comments on commit 83594cd

Please sign in to comment.