Skip to content

Commit

Permalink
feat(ci): add luarocks uploader workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed Jul 5, 2023
1 parent f62e912 commit fddccdf
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: LuaRocks release
on:
push:
tags:
- "*"

jobs:
luarocks:
runs-on: ubuntu-latest
name: LuaRocks upload
steps:
- name: checkout
uses: actions/checkout@v3
- name: LuaRocks upload
uses: nvim-neorocks/luarocks-tag-release@v5
with:
labels: |
neovim
colorscheme
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}

0 comments on commit fddccdf

Please sign in to comment.