aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-04-21 21:20:37 +0200
committerGitHub <noreply@github.com>2023-04-21 19:20:37 +0000
commitaa815877cc79f4febc6bd4b38f6b9efff546339a (patch)
tree91be4ecbdc53086bc6e30fc837b5f4b5d238abd3
parentfeat: add typst_lsp mapping (#198) (diff)
downloadmason-lspconfig-aa815877cc79f4febc6bd4b38f6b9efff546339a.tar
mason-lspconfig-aa815877cc79f4febc6bd4b38f6b9efff546339a.tar.gz
mason-lspconfig-aa815877cc79f4febc6bd4b38f6b9efff546339a.tar.bz2
mason-lspconfig-aa815877cc79f4febc6bd4b38f6b9efff546339a.tar.lz
mason-lspconfig-aa815877cc79f4febc6bd4b38f6b9efff546339a.tar.xz
mason-lspconfig-aa815877cc79f4febc6bd4b38f6b9efff546339a.tar.zst
mason-lspconfig-aa815877cc79f4febc6bd4b38f6b9efff546339a.zip
chore(ci): add release workflow (#199)
-rw-r--r--.github/workflows/release.yml29
-rw-r--r--README.md7
2 files changed, 35 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..dc7323f
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,29 @@
+name: Release
+
+on:
+ push:
+ branches:
+ - "main"
+permissions:
+ contents: write
+ pull-requests: write
+
+jobs:
+ release:
+ name: release
+ runs-on: ubuntu-latest
+ steps:
+ - uses: google-github-actions/release-please-action@v3
+ id: release
+ with:
+ release-type: simple
+ package-name: mason-lspconfig.nvim
+
+ - uses: actions/checkout@v3
+
+ - uses: rickstaa/action-create-tag@v1
+ if: ${{ steps.release.outputs.release_created }}
+ with:
+ tag: stable
+ message: "Current stable release: ${{ steps.release.outputs.tag_name }}"
+ force_push_tag: true
diff --git a/README.md b/README.md
index 73b17e8..4e4a289 100644
--- a/README.md
+++ b/README.md
@@ -9,9 +9,14 @@
<code>mason-lspconfig</code> bridges <a
href="https://github.com/williamboman/mason.nvim"><code>mason.nvim</code></a> with the <a
href="https://github.com/neovim/nvim-lspconfig"><code>lspconfig</code></a> plugin - making it easier to use both
- plugins together.<br />
+ plugins together.
+</p>
+<p align="center">
<code>:help mason-lspconfig.nvim</code>
</p>
+<p align="center">
+ <sup>Latest version: v1.0.0</sup> <!-- x-release-please-version -->
+</p>
# Table of Contents