updated sample folder names in package, moved github workflow to upm folder
parent
028aea8706
commit
14b897807b
|
|
@ -0,0 +1,20 @@
|
||||||
|
name: Publish to Verdaccio
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- upm
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish-npm:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
registry-url: http://npm.ugavel.com/
|
||||||
|
- run: npm publish
|
||||||
|
working-directory: ./
|
||||||
|
env:
|
||||||
|
NODE_AUTH_TOKEN: ${{secrets.VERDACCIO_TOKEN}}
|
||||||
62
package.json
62
package.json
|
|
@ -1,28 +1,38 @@
|
||||||
{
|
{
|
||||||
"name": "edu.uga.engr.vel.velnet",
|
"name": "edu.uga.engr.vel.velnet",
|
||||||
"displayName": "VelNet",
|
"displayName": "VelNet",
|
||||||
"version": "1.1.6",
|
"version": "1.1.7",
|
||||||
"unity": "2019.1",
|
"unity": "2019.1",
|
||||||
"description": "A custom networking library for Unity.",
|
"description": "A custom networking library for Unity.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"networking",
|
"networking",
|
||||||
"self-hosted"
|
"self-hosted"
|
||||||
],
|
],
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Virtual Experiences Laboratory",
|
"name": "Virtual Experiences Laboratory",
|
||||||
"email": "kjohnsen@uga.edu",
|
"email": "kjohnsen@uga.edu",
|
||||||
"url": "https://vel.engr.uga.edu"
|
"url": "https://vel.engr.uga.edu"
|
||||||
},
|
},
|
||||||
"samples": [
|
"samples": [
|
||||||
{
|
{
|
||||||
"displayName": "Example Dissonance",
|
"displayName": "Basic Example",
|
||||||
"description": "Example Scene with Dissonance Integration Required",
|
"description": "Example Scene with minimal setup",
|
||||||
"path": "Samples~/ExampleDissonance"
|
"path": "Samples~/BasicExample"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"displayName": "Example VEL Voice",
|
"displayName": "Full Example",
|
||||||
"description": "Example Scene using Built-in VEL Voice",
|
"description": "Example Scene with VelVoice and several example sync scripts",
|
||||||
"path": "Samples~/ExampleVelVoice"
|
"path": "Samples~/FullExample"
|
||||||
}
|
},
|
||||||
]
|
{
|
||||||
|
"displayName": "VEL Voice Example",
|
||||||
|
"description": "Example Scene using Built-in VEL Voice",
|
||||||
|
"path": "Samples~/VelVoiceExample"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"displayName": "Dissonance Example",
|
||||||
|
"description": "Example Scene with Dissonance Integration Required",
|
||||||
|
"path": "Samples~/DissonanceExample"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue