Skip to content

Commit 3c6fb2d

Browse files
committed
chore: remove specific pnpm version from workflow and clean up whitespace in publish-package.yml
1 parent 5cb028c commit 3c6fb2d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/publish-package.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ jobs:
4444

4545
- name: Setup pnpm
4646
uses: pnpm/action-setup@v4
47-
with:
48-
version: 9.9.0
4947

5048
- name: Configure Git
5149
run: |
@@ -62,14 +60,14 @@ jobs:
6260
# Get current version
6361
CURRENT_VERSION=$(node -p "require('./package.json').version")
6462
echo "Current version: $CURRENT_VERSION"
65-
63+
6664
# Bump version based on input
6765
npm version ${{ inputs.version_type }} --no-git-tag-version
68-
66+
6967
# Get new version
7068
NEW_VERSION=$(node -p "require('./package.json').version")
7169
echo "New version: $NEW_VERSION"
72-
70+
7371
# Set output for subsequent steps
7472
echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT
7573
echo "tag=create-tbk-app-v$NEW_VERSION" >> $GITHUB_OUTPUT
@@ -102,4 +100,3 @@ jobs:
102100
run: |
103101
echo "✅ Successfully published create-tbk-app@${{ steps.bump-version.outputs.version }} to npm"
104102
echo "📦 Tagged as ${{ steps.bump-version.outputs.tag }}"
105-

0 commit comments

Comments
 (0)