Skip to content

Commit e5dbd06

Browse files
committed
fix: add luarocks
Release-as: 0.1.0
1 parent e0d6db8 commit e5dbd06

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/luarocks.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Push to Luarocks
2+
3+
on:
4+
push:
5+
tags: # Will upload to luarocks.org when a tag is pushed
6+
- "*"
7+
pull_request: # Will test a local install without uploading to luarocks.org
8+
workflow_dispatch:
9+
10+
jobs:
11+
luarocks-upload:
12+
runs-on: ubuntu-22.04
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: LuaRocks Upload
16+
uses: nvim-neorocks/luarocks-tag-release@v7
17+
env:
18+
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}

0 commit comments

Comments
 (0)