From f56c3fd60669eb01efaf70dcedc5a29ee7964400 Mon Sep 17 00:00:00 2001 From: Shawon Date: Mon, 12 Aug 2024 08:51:00 +0600 Subject: [PATCH] ci: Added luarocks workflow --- .github/workflows/luarocks.yml | 41 ++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/luarocks.yml diff --git a/.github/workflows/luarocks.yml b/.github/workflows/luarocks.yml new file mode 100644 index 0000000..ce82edd --- /dev/null +++ b/.github/workflows/luarocks.yml @@ -0,0 +1,41 @@ +name: Luarocks + +on: + push: + tags: + - '*' + release: + types: + - created + pull_request: # Tests packaging on PR + workflow_dispatch: + +jobs: + luarocks-upload: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 # Required to get the tags + - name: Get Version + run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV + + # Needed to build the tree-sitter parser dependencies + - name: Install C/C++ Compiler + uses: rlalik/setup-cpp-compiler@master + with: + compiler: clang-latest + - name: Install tree-sitter CLI + uses: baptiste0928/cargo-install@v3 + with: + crate: tree-sitter-cli + + - name: LuaRocks Upload + uses: nvim-neorocks/luarocks-tag-release@v7 + env: + LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} + with: + version: ${{ env.LUAROCKS_VERSION }} + dependencies: | + tree-sitter-vimdoc +