We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 117be6b commit e6531c6Copy full SHA for e6531c6
1 file changed
.github/workflows/bump-publish.yml
@@ -43,7 +43,7 @@ jobs:
43
runs-on: ubuntu-latest
44
steps:
45
- name: Checkout repository
46
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
47
with:
48
fetch-depth: 0
49
persist-credentials: true
@@ -174,7 +174,7 @@ jobs:
174
local reg_url=$2
175
echo "Publishing $dir to $reg_url..."
176
# Try bun publish, fallback to npm if it fails
177
- (cd "$dir" && bun publish --registry="$reg_url") || (cd "$dir" && npm publish --registry="$reg_url")
+ (cd "$dir" && bun publish --registry="$reg_url") || (cd "$dir" && pnpm publish --registry="$reg_url")
178
}
179
180
# Logic for "all" or specific list
0 commit comments