Skip to content

Commit 0fdb69f

Browse files
Matthieu Coudronteto
authored andcommitted
ci: add tag release workflow
publish rest.nvim automatically on luarocks upon new tag
1 parent 090e253 commit 0fdb69f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Luarocks release
2+
on:
3+
push:
4+
tags:
5+
- "*"
6+
7+
jobs:
8+
luarocks-release:
9+
runs-on: ubuntu-latest
10+
name: Luarocks upload
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
- name: Luarocks Upload
15+
uses: mrcjkb/luarocks-tag-release@master
16+
env:
17+
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}

0 commit comments

Comments
 (0)