Skip to content

Commit b3e579c

Browse files
committed
fix path
1 parent 3dc20ff commit b3e579c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/unity-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
# Store artifacts.
3939
- uses: actions/upload-artifact@v1
4040
with:
41-
name: RuntimeUnitTestToolkit.Unity.${{ env.GIT_TAG }}.unitypackage
42-
path: ./RuntimeUnitTestToolkit/RuntimeUnitTestToolkit.Unity.${{ env.GIT_TAG }}.unitypackage
41+
name: RuntimeUnitTestToolkit.${{ env.GIT_TAG }}.unitypackage
42+
path: ./RuntimeUnitTestToolkit/RuntimeUnitTestToolkit.${{ env.GIT_TAG }}.unitypackage
4343

4444
# Create Releases
4545
- uses: actions/create-release@v1
@@ -56,6 +56,6 @@ jobs:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757
with:
5858
upload_url: ${{ steps.create_release.outputs.upload_url }}
59-
asset_path: ./RuntimeUnitTestToolkit/RuntimeUnitTestToolkit.Unity.${{ env.GIT_TAG }}.unitypackage
60-
asset_name: RuntimeUnitTestToolkit.Unity.${{ env.GIT_TAG }}.unitypackage
59+
asset_path: ./RuntimeUnitTestToolkit/RuntimeUnitTestToolkit.${{ env.GIT_TAG }}.unitypackage
60+
asset_name: RuntimeUnitTestToolkit.${{ env.GIT_TAG }}.unitypackage
6161
asset_content_type: application/octet-stream

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ On CI(use CLI(Headless) mode), if fail the test, shows red. You can notify to Sl
3030

3131
Install
3232
---
33-
`RuntimeUnitTestToolkit.unitypackage` on [releases](https://github.com/Cysharp/RuntimeUnitTestToolkit/releases) page or `package.json` exists on `RuntimeUnitTestToolkit/Assets/RuntimeUnitTestToolkit` for package manager.
33+
`RuntimeUnitTestToolkit.*version*.unitypackage` on [releases](https://github.com/Cysharp/RuntimeUnitTestToolkit/releases) page or `package.json` exists on `RuntimeUnitTestToolkit/Assets/RuntimeUnitTestToolkit` for package manager.
3434

3535
After Unity 2019.3.4f1, Unity 2020.1a21, that support path query parameter of git package. You can add `https://github.com/Cysharp/RuntimeUnitTestToolkit.git?path=RuntimeUnitTestToolkit/Assets/RuntimeUnitTestToolkit` to Package Manager UI, or add `"com.cysharp.runtimeunittesttoolkit": "https://github.com/Cysharp/RuntimeUnitTestToolkit.git?path=RuntimeUnitTestToolkit/Assets/RuntimeUnitTestToolkit"` to `Packages/manifest.json`.
3636

0 commit comments

Comments
 (0)