Merge pull request #18 from pysan3/release-please--branches--main--co… #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: luarocks-tag-release | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
luarocks-upload: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Required to count the commits | |
- name: Get Version | |
run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV | |
- name: LuaRocks Upload | |
uses: nvim-neorocks/luarocks-tag-release@v5 | |
env: | |
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} | |
with: | |
summary: "OS Independent, ultimate solution to path handling in neovim." | |
detailed_description: | | |
This plugin aims to decrease the difficulties of path management across mutliple OSs in neovim. | |
The plugin API is heavily inspired by Python's `pathlib.Path` with tweaks to fit neovim usage. | |
It is mainly used in neo-tree.nvim but it is so simple that you can use it in your own configs! | |
version: ${{ env.LUAROCKS_VERSION }} | |
dependencies: | | |
nvim-nio >= 1.2.0 | |
labels: | | |
neovim | |
nvim | |
pathlib | |
os | |
test_interpreters: | | |
neovim-stable | |
neovim-nightly | |
copy_directories: | | |
{{ neovim.plugin.dirs }} | |
doc |