diff options
| -rw-r--r-- | .github/workflows/release.yml | 29 | ||||
| -rw-r--r-- | README.md | 7 |
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 @@ -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 |
