mirror of
https://github.com/lewis6991/gitsigns.nvim
synced 2025-02-16 04:06:50 +00:00
ci: move luarocks upload to release workflow
This commit is contained in:
parent
9f8a1ed860
commit
43799bc369
29
.github/workflows/luarocks.yml
vendored
29
.github/workflows/luarocks.yml
vendored
@ -1,29 +0,0 @@
|
||||
---
|
||||
name: Push to Luarocks
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
release:
|
||||
types:
|
||||
- created
|
||||
tags:
|
||||
- '*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
luarocks-upload:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0 # Required to count the commits
|
||||
- name: Get Version
|
||||
run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV
|
||||
- name: LuaRocks Upload
|
||||
uses: nvim-neorocks/luarocks-tag-release@v5
|
||||
env:
|
||||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
|
||||
with:
|
||||
version: ${{ env.LUAROCKS_VERSION }}
|
17
.github/workflows/release-please.yml
vendored
17
.github/workflows/release-please.yml
vendored
@ -26,6 +26,23 @@ jobs:
|
||||
git tag -f -a release -m "Last Stable Release"
|
||||
git push origin release -f
|
||||
|
||||
luarocks-upload:
|
||||
needs: release-please
|
||||
if: ${{ needs.release-please.outputs.release_created }}
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0 # Required to count the commits
|
||||
- name: Get Version
|
||||
run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV
|
||||
- name: LuaRocks Upload
|
||||
uses: nvim-neorocks/luarocks-tag-release@v5
|
||||
env:
|
||||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
|
||||
with:
|
||||
version: ${{ env.LUAROCKS_VERSION }}
|
||||
|
||||
update-doc:
|
||||
needs: release-please
|
||||
if: ${{ ! needs.release-please.outputs.release_created }}
|
||||
|
Loading…
Reference in New Issue
Block a user