diff --git a/.gitea/workflows/clean.yml b/.gitea/workflows/clean.yml new file mode 100644 index 0000000..4dc83cd --- /dev/null +++ b/.gitea/workflows/clean.yml @@ -0,0 +1,30 @@ +name: Clean + +on: + workflow_dispatch: + +jobs: + clean: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: false + + - name: Clean build artifacts + run: | + echo "Cleaning cinny dist..." + rm -rf cinny/dist + + echo "Cleaning Android build outputs..." + rm -rf android/app/build + + echo "Cleaning root node_modules..." + rm -rf node_modules + + echo "Cleaning cinny node_modules..." + rm -rf cinny/node_modules + + echo "Done."