aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMarc Jakobi <mrcjkb89@outlook.com>2023-02-03 18:23:14 +0100
committerMarc Jakobi <mrcjkb89@outlook.com>2023-02-03 18:23:14 +0100
commit64bee38a97c361a710be9603472e6bc83ec31d69 (patch)
treed546600c0bba47e36dff25d53d3822ceb8248535 /scripts
parentfix: check client when get client from cache (#2429) (diff)
downloadnvim-lspconfig-64bee38a97c361a710be9603472e6bc83ec31d69.tar
nvim-lspconfig-64bee38a97c361a710be9603472e6bc83ec31d69.tar.gz
nvim-lspconfig-64bee38a97c361a710be9603472e6bc83ec31d69.tar.bz2
nvim-lspconfig-64bee38a97c361a710be9603472e6bc83ec31d69.tar.lz
nvim-lspconfig-64bee38a97c361a710be9603472e6bc83ec31d69.tar.xz
nvim-lspconfig-64bee38a97c361a710be9603472e6bc83ec31d69.tar.zst
nvim-lspconfig-64bee38a97c361a710be9603472e6bc83ec31d69.zip
chore: use luarocks-tag-release workflow
Diffstat (limited to 'scripts')
-rw-r--r--scripts/luarocks-upload.sh10
-rw-r--r--scripts/test-luarocks-install.sh4
2 files changed, 0 insertions, 14 deletions
diff --git a/scripts/luarocks-upload.sh b/scripts/luarocks-upload.sh
deleted file mode 100644
index 8c4ff1f4..00000000
--- a/scripts/luarocks-upload.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env bash
-
-# Expects the LUAROCKS_API_KEY secret to be set
-
-TMP_DIR=$(mktemp -d)
-MODREV=$(git describe --tags --always --first-parent | tr -d "v")
-DEST_ROCKSPEC="$TMP_DIR/nvim-lspconfig-$MODREV-1.rockspec"
-cp "nvim-lspconfig-scm-1.rockspec" "$DEST_ROCKSPEC"
-sed -i "s/= 'scm'/= '$MODREV'/g" "$DEST_ROCKSPEC"
-luarocks upload "$DEST_ROCKSPEC" --api-key="$LUAROCKS_API_KEY"
diff --git a/scripts/test-luarocks-install.sh b/scripts/test-luarocks-install.sh
deleted file mode 100644
index 8d8d3242..00000000
--- a/scripts/test-luarocks-install.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/bin/env bash
-
-MODREV=$(git describe --tags --always --first-parent | tr -d "v")
-luarocks install "nvim-lspconfig" "$MODREV"