Skip to content

Commit dd0c20c

Browse files
committed
Run as quiet
1 parent 76aa85d commit dd0c20c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
- name: Check if first run and execute kamal app boot if necessary
7272
run: |
7373
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
74+
if ! kamal server exec --no-interactive -q "test -f $FIRST_RUN_FILE"; then
75+
kamal server exec --no-interactive -q "touch $FIRST_RUN_FILE"
76+
kamal app -q boot > /dev/null 2>&1 || true
7777
else
7878
echo "Not first run, skipping kamal app boot"
7979
fi

0 commit comments

Comments
 (0)