-
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.
- Loading branch information
1 parent
67aace5
commit f123266
Showing
4 changed files
with
82 additions
and
0 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,55 @@ | ||
name: Build Release | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
env: | ||
packageName: "tlp.udonuianimators" | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: get version | ||
id: version | ||
uses: notiz-dev/github-action-json-property@7c8cf5cc36eb85d8d287a8086a39dac59628eb31 | ||
with: | ||
path: "Packages/${{env.packageName}}/package.json" | ||
prop_path: "version" | ||
|
||
- name: Set Environment Variables | ||
run: | | ||
echo "zipFile=${{ env.packageName }}-${{ steps.version.outputs.prop }}".zip >> $GITHUB_ENV | ||
echo "unityPackage=${{ env.packageName }}-${{ steps.version.outputs.prop }}.unitypackage" >> $GITHUB_ENV | ||
- name: Create Zip | ||
uses: thedoctor0/zip-release@09336613be18a8208dfa66bd57efafd9e2685657 | ||
with: | ||
type: "zip" | ||
directory: "Packages/${{env.packageName}}/" | ||
filename: "../../${{env.zipFile}}" # make the zip file two directories up, since we start two directories in above | ||
|
||
- run: find "Packages/${{env.packageName}}/" -name \*.meta >> metaList | ||
|
||
- name: Create UnityPackage | ||
uses: pCYSl5EDgo/create-unitypackage@cfcd3cf0391a5ef1306342794866a9897c32af0b | ||
with: | ||
package-path: ${{ env.unityPackage }} | ||
include-files: metaList | ||
|
||
|
||
- name: Make Release | ||
uses: softprops/action-gh-release@1e07f4398721186383de40550babbdf2b84acfc5 | ||
with: | ||
tag_name: ${{ steps.version.outputs.prop }} | ||
files: | | ||
${{ env.zipFile }} | ||
${{ env.unityPackage }} | ||
Packages/${{ env.packageName }}/package.json |
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,9 @@ | ||
/* | ||
!.git | ||
!.github | ||
!.gitignore | ||
!LICENSE | ||
!README.md | ||
!Packages/ | ||
Packages/* | ||
!Packages/tlp.udonuianimators/* |
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,16 @@ | ||
{ | ||
"name": "tlp.udonuianimators", | ||
"displayName": "TLP UdonUiAnimators", | ||
"version": "1.0.0", | ||
"description": "Extendable, programmable animator system that does not rely on Unity Animators.", | ||
"gitDependencies": {}, | ||
"author": { | ||
"name": "Guribo", | ||
"url": "https://github.com/Guribo" | ||
}, | ||
"vpmDependencies": { | ||
"com.vrchat.udonsharp": "^1.1.x", | ||
"tlp.udonutils": "^1.0.x" | ||
}, | ||
"unity": "2019.4" | ||
} |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# UdonUiAnimators | ||
Extendable, programmable animator system that does not rely on Unity Animators. | ||
|
||
Install via VRChat Creator companion using my [VPM Listing](https://guribo.github.io/TLP/) |