From a6eafada1a4ebf83729b4614cef1495a211bd73c Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 3 Feb 2026 10:50:37 +0100 Subject: [PATCH] fix: make apt-get quiet --- .forgejo/workflows/typo3-deploy-stage.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/typo3-deploy-stage.yaml b/.forgejo/workflows/typo3-deploy-stage.yaml index ed65d5c..84aa0d7 100644 --- a/.forgejo/workflows/typo3-deploy-stage.yaml +++ b/.forgejo/workflows/typo3-deploy-stage.yaml @@ -89,7 +89,7 @@ jobs: tar xf build.tar.gz && rm build.tar.gz composer require deployer/deployer --dev -q - - run: apt-get update && apt-get install -y openssh-client rsync + - run: apt-get update -qq && apt-get install -y -qq openssh-client rsync - name: Upload release uses: deployphp/action@v1 @@ -121,7 +121,7 @@ jobs: tar xf build.tar.gz && rm build.tar.gz composer require deployer/deployer --dev -q - - run: apt-get update && apt-get install -y openssh-client rsync + - run: apt-get update -qq && apt-get install -y -qq openssh-client rsync - name: Switch release uses: deployphp/action@v1 @@ -202,7 +202,7 @@ jobs: tar xf build.tar.gz && rm build.tar.gz composer require deployer/deployer --dev -q - - run: apt-get update && apt-get install -y openssh-client rsync + - run: apt-get update -qq && apt-get install -y -qq openssh-client rsync - name: Deploy to production uses: deployphp/action@v1