diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 00000000..c9519ff7 --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,22 @@ +name: Create Unity Package + +on: push + +jobs: + echo: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: | + find Assets/ -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 \ No newline at end of file