Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: do not include tests and scripts etc files #16

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Prepare Unity Project
run: |
mv Tests~ Tests
rm -rf Tests~
mkdir -p .github/unity-project/Packages/${{ env.packageName }}
mv [!.github]* .github/unity-project/Packages/${{ env.packageName }}/
mv .github/unity-project/* .
Expand All @@ -52,6 +52,7 @@ jobs:
uses: thedoctor0/zip-release@09336613be18a8208dfa66bd57efafd9e2685657
with:
type: "zip"
exclusions: 'Doxyfile* *.bat'
directory: "Packages/${{env.packageName}}/"
filename: "../../${{env.zipFile}}" # make the zip file two directories up, since we start two directories in above

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.chocopoi.vrc.avatarlib",
"displayName": "AvatarLib",
"version": "1.1.0",
"version": "1.1.1",
"description": "Contains a bunch of quick-to-use APIs for plugins and applications to add, modify a VRChat avatar.",
"unity": "2019.4",
"author": {
Expand Down
Loading