From a58811e675b3da79179f8e32f07316b8408c17d9 Mon Sep 17 00:00:00 2001 From: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sun, 23 Jun 2024 23:29:43 +0500 Subject: [PATCH] ci: use sh shell to get pnpm store directory --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e24f2cb7..94522ef5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: with: version: 8 - name: Get pnpm store directory - shell: bash + shell: sh run: | echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - name: Setup pnpm cache diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1cfa22a7..649b1bfe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: with: version: 8 - name: Get pnpm store directory - shell: bash + shell: sh run: | echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - name: Setup pnpm cache