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