All checks were successful
Deploy / build (push) Successful in 18s
Reviewed-on: #30
9 lines
111 B
Bash
Executable File
9 lines
111 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir /app
|
|
git clone --branch ${BRANCH} ${REPOSITORY} /app/repo
|
|
cd /app/repo
|
|
make run
|