Skip to content

Commit

Permalink
add missing name
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonic853 committed Aug 16, 2024
1 parent 3b3a660 commit 6353362
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Checkout repository to Packages
uses: actions/checkout@v4
with:
path: Packages

- name: Set up Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -42,6 +37,11 @@ jobs:
echo "current_version=$current_version" >> $GITHUB_OUTPUT
echo "name=$name" >> $GITHUB_OUTPUT
- name: Checkout repository to Packages
uses: actions/checkout@v4
with:
path: Packages/${{ steps.read_version.outputs.name }}

- name: Create Tag
if: steps.read_version.outputs.last_tag != steps.read_version.outputs.current_version
uses: rickstaa/action-create-tag@v1
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Track Package Meta Files
if: steps.read_version.outputs.last_tag != steps.read_version.outputs.current_version
run: find "Packages/" -name \*.meta >> metaList
run: find "Packages/${{ steps.read_version.outputs.name }}" -name \*.meta >> metaList

- name: Create UnityPackage
if: steps.read_version.outputs.last_tag != steps.read_version.outputs.current_version
Expand Down

0 comments on commit 6353362

Please sign in to comment.