14 lines
233 B
Bash
Executable File
14 lines
233 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
source ./ci/lib.sh
|
|
|
|
./ci/container/exec.sh ./ci/steps/static-release.sh
|
|
./ci/container/exec.sh yarn pkg
|
|
./ci/release-container/push.sh
|
|
}
|
|
|
|
main "$@"
|