We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0d6db8 commit e5dbd06Copy full SHA for e5dbd06
.github/workflows/luarocks.yml
@@ -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