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