diff options
-rw-r--r-- | .github/FUNDING.yml | 1 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 28 | ||||
-rw-r--r-- | readme.md | 8 |
3 files changed, 33 insertions, 4 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..2fd5788 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: 'max397574' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8578e50 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +name: CI +on: + push: + pull_request: + +jobs: + release: + name: release + if: ${{ github.ref == 'refs/heads/main' }} + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + id: release + with: + release-type: simple + package-name: startup.nvim + - uses: actions/checkout@v2 + - 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 "Last Stable Release" + git push origin stable + @@ -7,10 +7,6 @@ The fully customizable greeter for neovim </div> - I don't have time to maintain this atm. - If someone wants to do so feel free to do. - I'll accept new PRs. - ✨Features -------- @@ -326,3 +322,7 @@ Similar plugins: * [dashboard-nvim](https://github.com/glepnir/dashboard-nvim) * [alpha-nvim](https://github.com/goolord/alpha-nvim) * [vim-startify](https://github.com/mhinz/vim-startify) + +## ❤️ Support +If you like the projects I do and they can help you in your life you can support my work with [github sponsors](https://github.com/sponsors/max397574). +Every support motivates me to continue working on my open source projects. |