Skip to content

ci: add v0.11 to CI #124

ci: add v0.11 to CI

ci: add v0.11 to CI #124

Workflow file for this run

name: release
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
docs:
runs-on: ubuntu-latest
name: vimdoc generator
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.PAT }}
- name: panvimdoc
uses: kdheepak/panvimdoc@main
with:
vimdoc: elixir-tools.nvim
version: "NVIM v0.8.0"
demojify: true
treesitter: true
- name: Push changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore(build): auto-generate vimdoc [skip ci]"
commit_user_name: "github-actions[bot]"
commit_user_email: "github-actions[bot]@users.noreply.github.com"
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
release:
name: release
needs:
- docs
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
- uses: actions/checkout@v4
- name: tag stable versions
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git"
git tag -d stable || true
git push origin :stable || true
git tag -a stable -m "Latest Stable Release"
git push origin stable