From df7c37e1ca6e9880225b0f88748cc3b8525637f5 Mon Sep 17 00:00:00 2001 From: Wonsuk Choi Date: Wed, 22 Oct 2025 00:46:03 +0900 Subject: [PATCH] ci(.github/workflows/release): standardize yarn commands to use explicit 'run' syntax --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 254dc41..36c826d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,18 +30,18 @@ jobs: run: yarn install - name: Build - run: yarn prepack + run: yarn run prepack - name: Type Check - run: yarn test:type + run: yarn run test:type - name: Create Release Pull Request or Publish to npm uses: changesets/action@v1 with: title: 'chore: version packages' commit: 'chore: version packages' - version: yarn changeset:version - publish: yarn changeset:publish + version: yarn run changeset:version + publish: yarn run changeset:publish env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_CONFIG_PROVENANCE: true