mirror of
https://git.aaro.dev/VRCBoard/vrcboard-udon.git
synced 2026-03-17 03:09:45 +00:00
22 lines
430 B
YAML
22 lines
430 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
|
|
|
|
- uses: pCYSl5EDgo/create-unitypackage@master
|
|
with:
|
|
package-path: 'a/output.unitypackage'
|
|
include-files: metaList
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
path: a
|
|
name: package |