Skip to content

Commit 8041092

Browse files
committed
fix: conditional install
1 parent a262c7e commit 8041092

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/ci/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ runs:
2222
# Because the package.json for integration test changes.
2323

2424
- name: Install
25-
if: startsWith(github.ref, 'refs/heads/changeset-')
25+
if: github.ref == 'changeset-release/master'
2626
run: pnpm install --no-frozen-lockfile
2727
shell: bash
2828

2929
- name: Install
30-
if: ${{ !startsWith(github.ref, 'refs/heads/changeset-') }}
30+
if: github.ref != 'changeset-release/master'
3131
run: pnpm install
3232
shell: bash

0 commit comments

Comments
 (0)