From 0fac46fa0ecf64b5ada9ac4dc56550e4e4576f98 Mon Sep 17 00:00:00 2001 From: aarov Date: Mon, 30 Sep 2024 11:28:26 +0000 Subject: [PATCH] try to add CI --- .gitea/workflows/unitypackage.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/unitypackage.yaml diff --git a/.gitea/workflows/unitypackage.yaml b/.gitea/workflows/unitypackage.yaml new file mode 100644 index 0000000..1e13052 --- /dev/null +++ b/.gitea/workflows/unitypackage.yaml @@ -0,0 +1,22 @@ +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 \ No newline at end of file