All checks were successful
actionlint check / actionlint check (pull_request) Successful in 8s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 5s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 8s
hadolint check / hadolint check (pull_request) Successful in 14s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 11s
GitLeaks check / GitLeaks check (pull_request) Successful in 10s
htmlhint check / htmlhint check (pull_request) Successful in 42s
Prettier check / Prettier check (pull_request) Successful in 36s
markdownlint check / markdownlint check (pull_request) Successful in 40s
ShellCheck check / ShellCheck check (pull_request) Successful in 27s
checkov check / checkov check (pull_request) Successful in 1m30s
Stylelint check / Stylelint check (pull_request) Successful in 27s
yamllint check / yamllint check (pull_request) Successful in 41s
Rust check / Rust check (pull_request) Successful in 23m48s
13 lines
609 B
Bash
13 lines
609 B
Bash
#!/bin/sh
|
|
|
|
echo "Warning: This script needs to stop any currently running Docker compose stacks. Stopping them now..."
|
|
docker compose down
|
|
|
|
mkdir -p bundle/android bundle/temp \
|
|
&& docker compose -f docker-compose-prod.yaml -f docker-compose-android-bundle.yaml up --build --no-start --no-deps app \
|
|
&& docker compose -f docker-compose-prod.yaml -f docker-compose-android-bundle.yaml cp app:/srv/app/bundle bundle/temp \
|
|
&& mv bundle/temp/bundle/* bundle/android \
|
|
&& rm -r bundle/temp
|
|
|
|
echo "Warning: If a running Docker compose stack has been stopped by this script, you may want to bring it up again now."
|