From deeb28306bdf4bff2dbfcc6ceec0f6cacce3a24e Mon Sep 17 00:00:00 2001 From: Rajiv Shah Date: Sun, 9 Feb 2020 18:09:27 -0500 Subject: [PATCH] fix(publish): Use `yarn audit` instead of `npm audit` (#411) --- .github/workflows/release-npm.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 56ab9c05c..3cca08bff 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -50,7 +50,7 @@ jobs: working-directory: ${{ matrix.package.path }} run: | echo "# NPM Audit Results" | tee -a ${{runner.workspace }}/notes.md - npm audit 2>&1 | tee -a ${{runner.workspace }}/notes.md + yarn audit 2>&1 | tee -a ${{runner.workspace }}/notes.md - name: Publish ${{ matrix.package.name }} if: env.PACKAGE_VERSION != env.PUBLISHED_VERSION working-directory: ${{ matrix.package.path }} @@ -78,7 +78,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - upload_url: ${{ steps.create_npm_release.outputs.upload_url }} + upload_url: ${{ steps.create_npm_release.outputs.upload_url }} asset_path: ./${{ matrix.package.path }}/${{ matrix.package.registryName }}-${{ env.PACKAGE_VERSION }}.tgz asset_name: ${{ matrix.package.registryName }}-${{ env.PACKAGE_VERSION }}.tgz asset_content_type: application/x-gtar