From 4e8bae836c19a4ccb98059535fa08e7e3b7c1722 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 6 Jun 2024 11:50:26 -0600 Subject: [PATCH] Fix path --- .gitea/workflows/test-deployment.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test-deployment.yml b/.gitea/workflows/test-deployment.yml index cf37dee..ef66d24 100644 --- a/.gitea/workflows/test-deployment.yml +++ b/.gitea/workflows/test-deployment.yml @@ -6,6 +6,7 @@ on: paths: - '!**' - '.gitea/workflows/triggers/test-deployment' + - '.gitea/workflows/test-deployment.yml' jobs: test: @@ -15,7 +16,7 @@ jobs: - name: "Clone project repository" uses: actions/checkout@v4 with: - path: 'test-continuous-deployment' + path: 'deployment-tools' # At present the stock setup-python action fails on Linux/aarch64 # Conditional steps below workaroud this by using deadsnakes for that case only - name: "Install Python for ARM on Linux" @@ -31,7 +32,7 @@ jobs: - name: "Print Python version" run: python3 --version - name: "Install stack orchestrator" - run: ./scripts/install-so.sh + run: ./deployment-tools/scripts/install-so.sh - name: "Clone target stack" uses: actions/checkout@v4 with: