From 5d37427e5e7aaea8060285c4479cd75d36402240 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Prie=C3=9Fnitz?= Date: Wed, 3 Dec 2025 01:08:42 +0100 Subject: [PATCH] updated Workflow [deploy] --- .gitea/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index a20ce3f..cea49a8 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -7,8 +7,7 @@ on: jobs: deploy: - # Label muss zu deinem Runner passen! - runs-on: ubuntu-latest + runs-on: ubuntu-latest # passt zu deiner config.yaml steps: - name: Checkout repository @@ -31,8 +30,9 @@ jobs: echo "No 'deploy' keyword in commit message. Skipping deployment." exit 0 - - name: Run deploy script on host + - name: Run deploy script in workspace if: steps.check_deploy.outputs.should_deploy == 'true' run: | - echo "Starte deploy.sh auf dem Docker-Host..." - /opt/Papo/deploy.sh + echo "Starte deploy.sh im Workspace..." + chmod +x ./deploy.sh + ./deploy.sh