diff options
| author | Ellison Leão <ellisonleao@gmail.com> | 2023-03-26 22:58:04 -0300 |
|---|---|---|
| committer | Ellison Leão <ellisonleao@gmail.com> | 2023-03-26 22:58:04 -0300 |
| commit | 2fc3ea0836aa91e50e5a98e232549a65de366d93 (patch) | |
| tree | f2ae74c806c77872dc9f4f5150d86955a911035d /.github/workflows/luarocks.yml | |
| parent | 0d383750a907a96c964bbbfe17f75f6e066d09dd (diff) | |
| download | gruvbox-2fc3ea0836aa91e50e5a98e232549a65de366d93.tar.gz gruvbox-2fc3ea0836aa91e50e5a98e232549a65de366d93.tar.xz | |
adding luarocks workflow
Diffstat (limited to '.github/workflows/luarocks.yml')
| -rw-r--r-- | .github/workflows/luarocks.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/luarocks.yml b/.github/workflows/luarocks.yml new file mode 100644 index 0000000..05db001 --- /dev/null +++ b/.github/workflows/luarocks.yml @@ -0,0 +1,14 @@ +name: "release" +on: + push: + tags: + - 'v*' +jobs: + luarocks-upload: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - name: LuaRocks Upload + uses: nvim-neorocks/luarocks-tag-release@v4 + env: + LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} |
