Skip to content

Commit 6353362

Browse files
committed
add missing name
1 parent 3b3a660 commit 6353362

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ jobs:
1919
- name: Checkout repository
2020
uses: actions/checkout@v4
2121

22-
- name: Checkout repository to Packages
23-
uses: actions/checkout@v4
24-
with:
25-
path: Packages
26-
2722
- name: Set up Node.js
2823
uses: actions/setup-node@v4
2924
with:
@@ -42,6 +37,11 @@ jobs:
4237
echo "current_version=$current_version" >> $GITHUB_OUTPUT
4338
echo "name=$name" >> $GITHUB_OUTPUT
4439
40+
- name: Checkout repository to Packages
41+
uses: actions/checkout@v4
42+
with:
43+
path: Packages/${{ steps.read_version.outputs.name }}
44+
4545
- name: Create Tag
4646
if: steps.read_version.outputs.last_tag != steps.read_version.outputs.current_version
4747
uses: rickstaa/action-create-tag@v1
@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: Track Package Meta Files
5757
if: steps.read_version.outputs.last_tag != steps.read_version.outputs.current_version
58-
run: find "Packages/" -name \*.meta >> metaList
58+
run: find "Packages/${{ steps.read_version.outputs.name }}" -name \*.meta >> metaList
5959

6060
- name: Create UnityPackage
6161
if: steps.read_version.outputs.last_tag != steps.read_version.outputs.current_version

0 commit comments

Comments
 (0)