Skip to content

Commit eddde9a

Browse files
committed
Fix ci
1 parent 9873847 commit eddde9a

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,18 @@ jobs:
3333
packagePath: Packages/${{ vars.PACKAGE_NAME }}
3434
if: needs.config.outputs.config_package == 'true'
3535
steps:
36-
37-
# Checkout Local Repository
38-
- name: Checkout
39-
uses: actions/checkout@v4
40-
with:
41-
path: ${{ env.packagePath }}
42-
43-
# Create Unity project
36+
# Setup Unity project
4437
- name: Setup Unity project
45-
uses: ${{ env.packagePath }}/.github/actions/setup-unity-project
38+
uses: ./.github/actions/setup-unity-project
4639
with:
4740
unityVersion: 2022.3.22f1
4841
manifest: "{}"
4942

43+
# Checkout Local Repository
44+
- name: Checkout
45+
uses: actions/checkout@v4
46+
with:
47+
path: ${{ env.packagePath }}
5048

5149
# Get the Package version based on the package.json file
5250
- name: Get Version

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- standalone
2828
steps:
2929
- name: Setup package testing project
30-
uses: ${{ env.PACKAGE_DIRECTORY }}/.github/actions/setup-unity-project
30+
uses: ./.github/actions/setup-unity-project
3131
with:
3232
projectDirectory: ${{ env.PROJECT_DIRECTORY }}
3333
unityVersion: ${{ matrix.unityVersion }}

0 commit comments

Comments
 (0)