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 8db04c5 commit 91a8ad0Copy full SHA for 91a8ad0
1 file changed
.github/workflows/luarocks.yml
@@ -2,8 +2,9 @@ name: Push to Luarocks
2
3
on:
4
push:
5
- branches:
6
- - main
+ tags: # Will upload to luarocks.org when a tag is pushed
+ - "*"
7
+ pull_request: # Will test a local install without uploading to luarocks.org
8
9
jobs:
10
luarocks-upload:
@@ -27,6 +28,7 @@ jobs:
27
28
uses: nvim-neorocks/luarocks-tag-release@v7
29
env:
30
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
31
+ CXX: "clang++"
32
with:
33
version: ${{ env.LUAROCKS_VERSION }}
34
dependencies: |
0 commit comments