We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b647602 commit 76e4b2cCopy full SHA for 76e4b2c
.github/workflows/release.yml
@@ -16,3 +16,5 @@ jobs:
16
env:
17
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
18
run: make luarocks_upload
19
+ - name: Install release
20
+ run: make test_luarocks_install
Makefile
@@ -6,3 +6,6 @@ generate_filetypes:
6
7
luarocks_upload:
8
bash ./scripts/luarocks-upload.sh
9
+
10
+test_luarocks_install:
11
+ bash ./scripts/test-luarocks-install.sh
scripts/test-luarocks-install.sh
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env bash
2
3
+MODREV=$(git describe --tags --always --first-parent | tr -d "v")
4
+luarocks install "plenary.nvim" "$MODREV"
0 commit comments