generated from vrchat-community/template-package
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from kurone-kito/improve-the-project
Improve the project
- Loading branch information
Showing
13 changed files
with
173 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
chat: | ||
auto_reply: true | ||
early_access: true | ||
language: en | ||
reviews: | ||
auto_review: | ||
enabled: true | ||
path_filters: | ||
- '!Assets' | ||
- '!Packages/com.vrchat.core.*/**/*' | ||
- '!ProjectSettings' | ||
path_instructions: | ||
- instructions: Some files look broken, but they contain templates from Scriban. Please review with this in mind. | ||
path: Website/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,7 @@ jobs: | |
config_package: ${{ steps.config_package.outputs.configPackage }} | ||
steps: | ||
|
||
# Ensure that required repository variable has been created for the Package | ||
- name: Validate Package Config | ||
- name: Ensure that required repository variable has been created for the Package | ||
id: config_package | ||
run: | | ||
if [ "${{ vars.PACKAGE_NAME }}" != "" ]; then | ||
|
@@ -20,8 +19,6 @@ jobs: | |
echo "configPackage=false" >> $GITHUB_OUTPUT; | ||
fi | ||
# Build and release the Package | ||
# If the repository is not configured properly, this job will be skipped | ||
build: | ||
needs: config | ||
runs-on: ubuntu-latest | ||
|
@@ -39,39 +36,27 @@ jobs: | |
with: | ||
file_path: "${{ env.packagePath }}/package.json" | ||
prop_path: "version" | ||
|
||
# Configure the Environment Variables needed for releasing the Package | ||
- name: Set Environment Variables | ||
- name: Configure the Environment Variables needed for releasing the Package | ||
run: | | ||
echo "zipFile=${{ vars.PACKAGE_NAME }}-${{ steps.version.outputs.value }}".zip >> $GITHUB_ENV | ||
echo "unityPackage=${{ vars.PACKAGE_NAME }}-${{ steps.version.outputs.value }}.unitypackage" >> $GITHUB_ENV | ||
echo "version=${{ steps.version.outputs.value }}" >> $GITHUB_ENV | ||
# Zip the Package for release | ||
- name: Create Package Zip | ||
- name: Zip the Package for release | ||
working-directory: "${{ env.packagePath }}" | ||
run: zip -r "${{ github.workspace }}/${{ env.zipFile }}" . | ||
|
||
# Build a list of .meta files for future use | ||
- name: Track Package Meta Files | ||
- name: Build a list of .meta files for future use | ||
run: find "${{ env.packagePath }}/" -name \*.meta >> metaList | ||
|
||
# Make a UnityPackage version of the Package for release | ||
- name: Create UnityPackage | ||
- name: Make a UnityPackage version of the Package for release | ||
uses: pCYSl5EDgo/create-unitypackage@v1 | ||
with: | ||
package-path: ${{ env.unityPackage }} | ||
include-files: metaList | ||
|
||
# Make a release tag of the version from the package.json file | ||
- name: Create Tag | ||
- name: Create a release tag of the version from the package.json file | ||
id: tag_version | ||
uses: rickstaa/action-create-tag@v1 | ||
with: | ||
tag: "${{ env.version }}" | ||
|
||
# Publish the Release to GitHub | ||
- name: Make Release | ||
- name: Publish the Release to GitHub | ||
uses: softprops/[email protected] | ||
with: | ||
files: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+3.5 KB
(100%)
Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/vpm-core-lib.dll
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.