Skip to content

Commit cfc5e9b

Browse files
committed
chore: fix gh workflows envs
1 parent 0c66d12 commit cfc5e9b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/manual-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
id: pnpm-cache
3434
shell: bash
3535
run: |
36-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
36+
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
3737
3838
- uses: actions/cache@v4
3939
name: Setup pnpm cache
@@ -59,7 +59,7 @@ jobs:
5959
run: |
6060
pnpm changeset version
6161
NEW_VERSION=$(node -p "require('./packages/react-qr-code/package.json').version")
62-
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
62+
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT
6363
6464
- name: Create Branch and Commit
6565
run: |

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
id: store-path
2828
shell: bash
2929
run: |
30-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
30+
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
3131
3232
- uses: actions/cache@v4
3333
name: Setup pnpm cache

0 commit comments

Comments
 (0)