Skip to content

Commit 1b5b317

Browse files
authored
ci: Fix CI publishing again (#208)
1 parent 059e33a commit 1b5b317

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
- run: pnpm build
3131
- run: pnpm test
3232

33-
# Might need --recursive in this publish command?
3433
- name: Read version and publish
3534
env:
3635
# Clear the sentinel value setup-node writes; otherwise npm tries to
@@ -40,7 +39,7 @@ jobs:
4039
run: |
4140
VERSION=$(jq -r .version packages/deck.gl-geoarrow/package.json)
4241
if [[ "$VERSION" == *alpha* || "$VERSION" == *beta* ]]; then
43-
pnpm publish --no-git-checks --tag beta
42+
pnpm --filter @geoarrow/deck.gl-geoarrow publish --no-git-checks --tag beta
4443
else
45-
pnpm publish --no-git-checks
44+
pnpm --filter @geoarrow/deck.gl-geoarrow publish --no-git-checks
4645
fi

0 commit comments

Comments
 (0)