aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/release.yml3
-rw-r--r--lua/mason-lspconfig/version.lua8
2 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index dc7323f..0a2fdb9 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -18,6 +18,9 @@ jobs:
with:
release-type: simple
package-name: mason-lspconfig.nvim
+ extra-files: |
+ README.md
+ lua/mason-lspconfig/version.lua
- uses: actions/checkout@v3
diff --git a/lua/mason-lspconfig/version.lua b/lua/mason-lspconfig/version.lua
new file mode 100644
index 0000000..94dfb49
--- /dev/null
+++ b/lua/mason-lspconfig/version.lua
@@ -0,0 +1,8 @@
+local M = {}
+
+M.VERSION = "v1.0.0" -- x-release-please-version
+M.MAJOR_VERSION = 1 -- x-release-please-major
+M.MINOR_VERSION = 0 -- x-release-please-minor
+M.PATCH_VERSION = 0 -- x-release-please-patch
+
+return M