Skip to content

Commit

Permalink
ci: add luarocks release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
willothy committed Jan 26, 2024
1 parent b275b46 commit a347590
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/luarocks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: luarocks

on:
push:
tags:
- "*"
# Will test a local install without uploading to luarocks
pull_request:
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 a347590

Please sign in to comment.