diff options
| author | William Boman <william@redwill.se> | 2023-04-21 21:20:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-21 19:20:37 +0000 |
| commit | aa815877cc79f4febc6bd4b38f6b9efff546339a (patch) | |
| tree | 91be4ecbdc53086bc6e30fc837b5f4b5d238abd3 /.github/workflows | |
| parent | feat: add typst_lsp mapping (#198) (diff) | |
| download | mason-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)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 29 |
1 files changed, 29 insertions, 0 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 |
