From d0a907fbbec09ef0afde36bbe7dcff1fb74dc1d2 Mon Sep 17 00:00:00 2001 From: DavidDevGt Date: Thu, 5 Sep 2024 14:22:52 -0600 Subject: [PATCH] pruebas configuracion runner v3 --- .gitea/workflows/actions.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/actions.yml b/.gitea/workflows/actions.yml index bba01a8..b76d3d3 100644 --- a/.gitea/workflows/actions.yml +++ b/.gitea/workflows/actions.yml @@ -15,8 +15,12 @@ jobs: - name: Checkout code run: git clone ${{ secrets.REPO_URL }} . - - name: Set up PHP - run: sudo apt update && sudo apt install php-cli composer -y + - name: Set up PHP and Composer + run: | + apt-get update + apt-get install -y php-cli curl unzip + curl -sS https://getcomposer.org/installer | php + mv composer.phar /usr/local/bin/composer - name: Install Composer dependencies run: composer install