From ba35d094c1dfffa652e9c20971c51bd5271c1d25 Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Wed, 22 Feb 2023 19:15:43 +0100 Subject: ci: add release workflow for luarocks upload (#4109) --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release.yml (limited to '.github/workflows') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..865753c16 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,18 @@ +name: "release" +on: + push: + tags: + - '*' +jobs: + luarocks-upload: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + uses: nvim-neorocks/luarocks-tag-release@v1.0.2 + env: + LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} + with: + detailed_description: | + The goal of nvim-treesitter is both to provide a simple and easy way to use the interface for tree-sitter in Neovim + and to provide some basic functionality such as highlighting based on it. + build_type: "make" -- cgit v1.3.1