From 7aad1bf3f6b849cbf108e02c55ad4d701cb4d33a Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Sun, 14 Apr 2024 01:19:13 +0200 Subject: [PATCH] feat: support luarocks/rocks.nvim (#1434) --- .github/workflows/luarocks.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 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 00000000..b8fef50a --- /dev/null +++ b/.github/workflows/luarocks.yml @@ -0,0 +1,34 @@ +--- +name: Push to Luarocks + +on: + push: + tags: + - '*' + release: + types: + - created + tags: + - '*' + workflow_dispatch: + pull_request: # Will test the luarocks installation on PR, without uploading + +jobs: + luarocks-upload: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 # Required to count the commits + - name: Get Version + run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV + - name: LuaRocks Upload + uses: nvim-neorocks/luarocks-tag-release@v5 + env: + LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} + with: + version: ${{ env.LUAROCKS_VERSION }} + dependencies: | + plenary.nvim + nvim-web-devicons + nui.nvim