Skip to content

Commit

Permalink
ci: Add FORCE_BUILD variable
Browse files Browse the repository at this point in the history
Sometimes we just want to check if the build is working or to force a new one

#122: Deploy to separate GCP project
  • Loading branch information
MichaelAkvo committed Apr 13, 2022
1 parent ec1e9e5 commit 12e9f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -exuo pipefail
BACKEND_CHANGES=0
FRONTEND_CHANGES=0

if [[ -n "${FORCE:-}" ]] ; then
if [[ -n "${FORCE_BUILD:-}" ]] ; then
BACKEND_CHANGES=1
FRONTEND_CHANGES=1
else
Expand Down

0 comments on commit 12e9f12

Please sign in to comment.