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 be34bf6 commit c712a1cCopy full SHA for c712a1c
.github/workflows/publish.yml
@@ -3,7 +3,7 @@ name: Publish
3
on:
4
push:
5
tags:
6
- - "v*.*.*"
+ - "v[0-9]+.[0-9]+.[0-9]+-*"
7
8
jobs:
9
publish:
@@ -23,7 +23,10 @@ jobs:
23
uses: leafo/gh-actions-luarocks@v5
24
25
- name: Publish to LuaRocks
26
- run: luarocks upload --api-key=${{ secrets.LUAROCKS_API_KEY }} *.rockspec
+ run: |
27
+ luarocks upload \
28
+ rockspec/luarocks-build-lls-addon-${{ github.ref_name }}.rockspec \
29
+ --api-key=${{ secrets.LUAROCKS_API_KEY }}
30
31
- name: Create GitHub Release
32
uses: softprops/action-gh-release@v2
0 commit comments