From f65350e7621e6c0c76fc1c7435d1630ce47cc120 Mon Sep 17 00:00:00 2001 From: Unofficial Life <118039878+Unofficial-Life@users.noreply.github.com> Date: Mon, 24 Jun 2024 17:13:53 +0530 Subject: [PATCH] Create module.yml --- .github/workflows/module.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/module.yml diff --git a/.github/workflows/module.yml b/.github/workflows/module.yml new file mode 100644 index 0000000..cd355d8 --- /dev/null +++ b/.github/workflows/module.yml @@ -0,0 +1,26 @@ +name: Release Lawnchair module + +on: + push: + branches: + - main + +jobs: + release: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Remove .github and .git folders + run: | + find . -type d -name .github -exec rm -rf {} + + rm -rf .git + + - name: Upload files + uses: actions/upload-artifact@v4 + with: + name: Lawnchairmodule + path: ./ + if-no-files-found: error