11 lines
204 B
Bash
Executable File
11 lines
204 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
|
|
cd "${repo_root}"
|
|
mise run apk:lint
|
|
mise run apk:build-all
|
|
mise run apk:packages
|
|
mise run apk:smoke
|