Files
VRCBoard-Udon/.gitea/workflows/unitypackage.yaml
aarov 87ca7409a4
All checks were successful
Create Unity Package / package (push) Successful in 7s
Testing unitypackage workflow
2025-11-26 12:01:02 +00:00

22 lines
587 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
**/*.asset
**/*.shader
**/*.material
**/*.meta # Add this to include meta files recursively
dest: build.unitypackage
- run: ls -al *
- uses: actions/upload-artifact@v3
with:
path: build.unitypackage
name: unitypackage