chore(main): release 1.0.3 (#172) #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- name: LuaRocks Upload | |
uses: nvim-neorocks/luarocks-tag-release@v7 | |
env: | |
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} |