mirror of
https://github.com/lunarmodules/lua-iconv.git
synced 2025-06-22 20:24:36 +02:00
ci: Add lunarmodules lint, test, and deploy workflows
This commit is contained in:
parent
b761918588
commit
c2ee26e1ef
34
.github/workflows/deploy.yml
vendored
Normal file
34
.github/workflows/deploy.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
name: Deploy
|
||||||
|
|
||||||
|
on: [ push, workflow_dispatch ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
affected:
|
||||||
|
uses: lunarmodules/.github/.github/workflows/list_affected_rockspecs.yml@main
|
||||||
|
|
||||||
|
build:
|
||||||
|
needs: affected
|
||||||
|
if: ${{ needs.affected.outputs.rockspecs }}
|
||||||
|
uses: lunarmodules/.github/.github/workflows/test_build_rock.yml@main
|
||||||
|
with:
|
||||||
|
rockspecs: ${{ needs.affected.outputs.rockspecs }}
|
||||||
|
|
||||||
|
upload:
|
||||||
|
needs: [ affected, build ]
|
||||||
|
# Only run upload if:
|
||||||
|
# 1. We are on the canonical repository (no uploads from forks)
|
||||||
|
# 2. The current commit is either tagged or on the default branch (the workflow will upload dev/scm rockspecs any
|
||||||
|
# time they are touched, tagged ones whenever the edited rockspec and tag match)
|
||||||
|
# 3. Some rockspecs were changed — this implies the commit changing the rockspec is the same one that gets tagged
|
||||||
|
if: >-
|
||||||
|
${{
|
||||||
|
github.repository == 'lunarmodules/lua-iconv' &&
|
||||||
|
( github.ref_name == 'master' || startsWith(github.ref, 'refs/tags/') ) &&
|
||||||
|
needs.affected.outputs.rockspecs
|
||||||
|
}}
|
||||||
|
uses: lunarmodules/.github/.github/workflows/upload_to_luarocks.yml@main
|
||||||
|
with:
|
||||||
|
rockspecs: ${{ needs.affected.outputs.rockspecs }}
|
||||||
|
secrets:
|
||||||
|
apikey: ${{ secrets.LUAROCKS_APIKEY }}
|
13
.github/workflows/luacheck.yml
vendored
Normal file
13
.github/workflows/luacheck.yml
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name: Luacheck
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
luacheck:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Luacheck
|
||||||
|
uses: lunarmodules/luacheck@v1
|
Loading…
x
Reference in New Issue
Block a user