File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,19 @@ jobs:
15
15
uses :
VisualPinball/[email protected]
16
16
with :
17
17
tagPrefix : ' v'
18
- path : Packages/NativeTrees
18
+ path : ./ Packages/NativeTrees
19
19
- name : Bump
20
20
if : ${{ steps.nextVersion.outputs.isBump == 'true' }}
21
21
run : |
22
+ cd ./Packages/NativeTrees
22
23
npm version ${{ steps.nextVersion.outputs.nextVersion }} --no-git-tag-version
23
24
- name : Commit
24
25
id : commit
25
26
if : ${{ steps.nextVersion.outputs.isBump == 'true' }}
26
27
run : |
27
28
git config user.name "github-actions"
28
29
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
30
31
git commit -m "release: ${{ steps.nextVersion.outputs.nextTag }}."
31
32
git push
32
33
commitish=$(git rev-parse HEAD)
You can’t perform that action at this time.
0 commit comments