Skip to content

Commit

Permalink
feat(workflows): add luarocks
Browse files Browse the repository at this point in the history
  • Loading branch information
max397574 committed May 30, 2024
1 parent 3606ae1 commit 73aebb9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/luarocks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Push to Luarocks

on:
push:
tags: # Will upload to luarocks.org when a tag is pushed
- "*"
pull_request: # Will test a local install without uploading to luarocks.org
workflow_dispatch:

jobs:
luarocks-upload:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}

0 comments on commit 73aebb9

Please sign in to comment.