mirror of
https://git.aaro.dev/VRCBoard/vrcboard-udon.git
synced 2026-03-17 02:49:46 +00:00
21 lines
478 B
YAML
21 lines
478 B
YAML
name: Create Unity Package
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
package:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: create unitypackage from glob pattern
|
|
uses: natsuneko-laboratory/create-unitypackage@v3
|
|
with:
|
|
files-glob: |
|
|
./**/*.cs
|
|
dest: test.unitypackage
|
|
- run: ls -al *
|
|
- run: cat VRCBoardManager.cs
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
path: VRCBoardManager.cs
|
|
name: package |