From ab496362355e116b3aa656fcb6b62dae8cb12464 Mon Sep 17 00:00:00 2001 From: Serban Stancu Date: Tue, 25 Jun 2024 13:56:25 -0600 Subject: [PATCH] Use package parameter. --- .github/workflows/npm-publish-core-modules.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm-publish-core-modules.yaml b/.github/workflows/npm-publish-core-modules.yaml index cc23140..1248a4d 100644 --- a/.github/workflows/npm-publish-core-modules.yaml +++ b/.github/workflows/npm-publish-core-modules.yaml @@ -26,9 +26,8 @@ jobs: - name: Install core module dependencies working-directory: ./coreModulePackages/${{ github.event.inputs.module }} run: npm ci - - name: Publish core module to NPM - working-directory: ./coreModulePackages/${{ github.event.inputs.module }} - uses: JS-DevTools/npm-publish@v3 + - uses: JS-DevTools/npm-publish@v3 with: token: ${{ secrets.ADOBE_BOT_NPM_TOKEN }} + package: ./coreModulePackages/${{ github.event.inputs.module }} dryRun: true