From a2a29d6fafc0fb3f878ba8227cc154c8e51cc655 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 3 Feb 2026 10:23:29 +0100 Subject: [PATCH] fix: deployer path --- .forgejo/workflows/typo3-deploy-stage.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/typo3-deploy-stage.yaml b/.forgejo/workflows/typo3-deploy-stage.yaml index 03c6b28..3ed2a0a 100644 --- a/.forgejo/workflows/typo3-deploy-stage.yaml +++ b/.forgejo/workflows/typo3-deploy-stage.yaml @@ -85,14 +85,18 @@ jobs: with: name: build-${{ github.sha }} - - run: tar xf build.tar.gz && rm build.tar.gz + - run: | + tar xf build.tar.gz && rm build.tar.gz + curl -LO https://deployer.org/deployer.phar + mv deployer.phar /usr/local/bin/dep + chmod +x /usr/local/bin/dep - run: apt-get update && apt-get install -y openssh-client rsync - name: Upload release uses: deployphp/action@v1 with: - deployer-binary: "./bin/dep" + deployer-binary: "/usr/local/bin/dep" dep: --file=${{ inputs.deployer_file }} release:create stage private-key: ${{ secrets.stage_key }}