From bd76ddf5020b750ceefd249772206a857a554323 Mon Sep 17 00:00:00 2001 From: robby rabbitman Date: Sat, 29 Jun 2024 19:19:33 +0200 Subject: [PATCH] ci: fix invoking of nx --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4a19bc..4c54348 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,4 +40,4 @@ jobs: - run: pnpm exec nx affected -t lint test build - if: github.event_name == 'push' - run: nx release --skip-publish + run: pnpm exec nx release --skip-publish diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 28e4ec3..954cb10 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,7 +30,7 @@ jobs: - run: pnpm exec nx report - - run: npx nx release publish --dry-run + - run: pnpm exec nx release publish --dry-run env: NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }} NPM_CONFIG_PROVENANCE: true