Skip to content

Commit 8e9e447

Browse files
committed
ci: More path fixes.
1 parent 3bc122b commit 8e9e447

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,19 @@ jobs:
1515
uses: VisualPinball/[email protected]
1616
with:
1717
tagPrefix: 'v'
18-
path: Packages/NativeTrees
18+
path: ./Packages/NativeTrees
1919
- name: Bump
2020
if: ${{ steps.nextVersion.outputs.isBump == 'true' }}
2121
run: |
22+
cd ./Packages/NativeTrees
2223
npm version ${{ steps.nextVersion.outputs.nextVersion }} --no-git-tag-version
2324
- name: Commit
2425
id: commit
2526
if: ${{ steps.nextVersion.outputs.isBump == 'true' }}
2627
run: |
2728
git config user.name "github-actions"
2829
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
29-
git add Packages/NativeTrees/package.json
30+
git add ./Packages/NativeTrees/package.json
3031
git commit -m "release: ${{ steps.nextVersion.outputs.nextTag }}."
3132
git push
3233
commitish=$(git rev-parse HEAD)

0 commit comments

Comments
 (0)