Build Alpine Packages / build-and-publish (v3.24, 3.24) (push) Successful in 2h16m43s
9 lines
208 B
Bash
Executable File
9 lines
208 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
|
|
shellcheck \
|
|
"${repo_root}"/scripts/apk/*.sh \
|
|
"${repo_root}"/packaging/alpine/local/*/scripts/*.sh
|