Skip to content

Commit

Permalink
added luarocks release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Gennaro Tedesco committed Feb 23, 2023
1 parent 2e48f2e commit 3db6886
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
name: release

on:
workflow_dispatch:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Release
uses: softprops/action-gh-release@v1

luarocks-release:
runs-on: ubuntu-latest
name: LuaRocks upload
steps:
- name: Checkout
uses: actions/checkout@v3
- name: LuaRocks Upload
uses: nvim-neorocks/[email protected]
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
with:
labels: |
neovim
copy_directories: |
doc
license: "MIT"

0 comments on commit 3db6886

Please sign in to comment.