diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 30f099be..9006833e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,3 +13,7 @@ jobs: run: | shopt -s nullglob shellcheck */*/build */*/post-install + - uses: actions/upload-artifact@v1 + with: + name: maintainers + path: ./maintainers diff --git a/.github/workflows/maintainers b/.github/workflows/maintainers new file mode 100755 index 00000000..7a2e3fe5 --- /dev/null +++ b/.github/workflows/maintainers @@ -0,0 +1,9 @@ +#!/bin/sh -e + +for file in */*/version; do + pkg=${file%/*} + # author=$(git log -1 --format="tformat:%an %ae" "$file") + author="Dylan Araps dylan.araps@gmail.com" + + printf '%s\t%s\n' "$pkg" "$author" +done > maintainers