From b448c8642fd0a5ecb4eaf6cd213fdc4f035ad875 Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Fri, 21 Nov 2025 09:52:22 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=9F=20add=20GitHub=20Actions=20workflo?= =?UTF-8?q?w=20for=20Laravel=20Forge=20deployment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy_on_forge.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/deploy_on_forge.yml diff --git a/.github/workflows/deploy_on_forge.yml b/.github/workflows/deploy_on_forge.yml new file mode 100644 index 0000000..561d1b8 --- /dev/null +++ b/.github/workflows/deploy_on_forge.yml @@ -0,0 +1,19 @@ +name: 'Deploy on push' + +on: + push: + branches: + - master + +jobs: + forge-deploy: + name: 'Laravel Forge Deploy' + runs-on: ubuntu-latest + environment: production + + steps: + # Trigger Laravel Forge Deploy + - name: Deploy + uses: jbrooksuk/laravel-forge-action@v1.0.2 + with: + trigger_url: ${{ secrets.TRIGGER_URL }}