We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76aa85d commit dd0c20cCopy full SHA for dd0c20c
1 file changed
.github/workflows/release.yml
@@ -71,9 +71,9 @@ jobs:
71
- name: Check if first run and execute kamal app boot if necessary
72
run: |
73
FIRST_RUN_FILE="/opt/docker/${{ env.repository_name }}/.first_run"
74
- if ! kamal server exec --no-interactive "test -f $FIRST_RUN_FILE"; then
75
- kamal server exec --no-interactive "touch $FIRST_RUN_FILE"
76
- kamal app boot > /dev/null 2>&1 || true
+ if ! kamal server exec --no-interactive -q "test -f $FIRST_RUN_FILE"; then
+ kamal server exec --no-interactive -q "touch $FIRST_RUN_FILE"
+ kamal app -q boot > /dev/null 2>&1 || true
77
else
78
echo "Not first run, skipping kamal app boot"
79
fi
0 commit comments