Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,24 @@ on:
workflow_dispatch:

jobs:
release:
name: release
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: simple
package-name: catppuccin
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}

release:
runs-on: ubuntu-latest
if: ${{ needs.release-please.outputs.release_created }}
steps:
- uses: actions/checkout@v4
- name: tag stable versions
if: ${{ steps.release.outputs.release_created }}
- name: Update Latest Stable Tag
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
Expand All @@ -26,3 +32,10 @@ jobs:
git push origin :stable || true
git tag -a stable -m "Last Stable Release"
git push origin stable
- name: Upload to LuaRocks
uses: nvim-neorocks/luarocks-tag-release@v7
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
with:
name: catppuccin.nvim
version: ${{ needs.release-please.outputs.tag_name }}
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ add({ source = "catppuccin/nvim", name = "catppuccin" })
use { "catppuccin/nvim", as = "catppuccin" }
```

[rocks.nvim](https://github.com/nvim-neorocks/rocks.nvim)
```vim
:Rocks install catppuccin.nvim
```

[vim-plug](https://github.com/junegunn/vim-plug)
```vim
Plug 'catppuccin/nvim', { 'as': 'catppuccin' }
Expand Down
6 changes: 6 additions & 0 deletions doc/catppuccin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ packer.nvim <https://github.com/wbthomason/packer.nvim>
use { "catppuccin/nvim", as = "catppuccin" }
<

rocks.nvim <https://github.com/nvim-neorocks/rocks.nvim>

>vim
:Rocks install catppuccin.nvim
<

vim-plug <https://github.com/junegunn/vim-plug>

>vim
Expand Down