Added package.json
# Added - Added package.json. - Added package workflow.
This commit is contained in:
parent
c53f01ce99
commit
7b99f23300
41
.github/workflows/package.yaml
vendored
Normal file
41
.github/workflows/package.yaml
vendored
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
name: Export Package
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request: {}
|
||||||
|
push: { branches: [main] }
|
||||||
|
|
||||||
|
env:
|
||||||
|
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE_2020 }}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build UnityPackage
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
# Checkout
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
|
||||||
|
# Cache
|
||||||
|
- name: Cache
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: Library
|
||||||
|
key: Library
|
||||||
|
restore-keys: Library-
|
||||||
|
|
||||||
|
# Build
|
||||||
|
- name: Build .unitypackage
|
||||||
|
uses: game-ci/unity-builder@v2
|
||||||
|
with:
|
||||||
|
unityVersion: 2020.3.8f1
|
||||||
|
buildMethod: MackySoft.PackageTools.Editor.UnityPackageExporter.Export
|
||||||
|
|
||||||
|
# Upload
|
||||||
|
- name: Upload .unitypackage
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: Unity Package
|
||||||
|
path: Build
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "com.mackysoft.serializereference-extensions",
|
||||||
|
"displayName": "SerializeReference Extensions",
|
||||||
|
"version": "1.0.1",
|
||||||
|
"unity": "2019.4",
|
||||||
|
"description": "Provide popup to specify the type of the field serialized by the [SerializeReference] attribute in the inspector.",
|
||||||
|
"keywords": [ "SerializeReference", "Editor" ],
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {}
|
||||||
|
}
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: eda2c3e2d06229b4bb2c21d541f92f49
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Loading…
x
Reference in New Issue
Block a user