mirror of
https://git.aaro.dev/VRCBoard/vrcboard-udon.git
synced 2026-03-17 02:49:46 +00:00
20 lines
391 B
YAML
20 lines
391 B
YAML
name: Create Unity Package
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
echo:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: |
|
|
find ./ -name \*.meta >> metaList
|
|
|
|
- run: mkdir a
|
|
|
|
- name: create unitypackage from glob pattern
|
|
uses: natsuneko-laboratory/create-unitypackage@v3
|
|
with:
|
|
files-glob: |
|
|
./**/*.cs
|
|
dest: test.unitypackage |