17 lines
487 B
YAML
17 lines
487 B
YAML
name: luarocks
|
|
on:
|
|
workflow_run:
|
|
workflows: ["ci"]
|
|
types:
|
|
- completed
|
|
jobs:
|
|
publish:
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'main' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.workflow_run.head_sha }}
|
|
- uses: nvim-neorocks/luarocks-tag-release@v7
|
|
env:
|
|
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
|