Fix path
Some checks failed
Continuous Stack Deployment Test / Deploy test stack (push) Failing after 28s

This commit is contained in:
David Boreham 2024-06-06 11:50:26 -06:00
parent 19b0396679
commit 4e8bae836c

View File

@ -6,6 +6,7 @@ on:
paths: paths:
- '!**' - '!**'
- '.gitea/workflows/triggers/test-deployment' - '.gitea/workflows/triggers/test-deployment'
- '.gitea/workflows/test-deployment.yml'
jobs: jobs:
test: test:
@ -15,7 +16,7 @@ jobs:
- name: "Clone project repository" - name: "Clone project repository"
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
path: 'test-continuous-deployment' path: 'deployment-tools'
# At present the stock setup-python action fails on Linux/aarch64 # At present the stock setup-python action fails on Linux/aarch64
# Conditional steps below workaroud this by using deadsnakes for that case only # Conditional steps below workaroud this by using deadsnakes for that case only
- name: "Install Python for ARM on Linux" - name: "Install Python for ARM on Linux"
@ -31,7 +32,7 @@ jobs:
- name: "Print Python version" - name: "Print Python version"
run: python3 --version run: python3 --version
- name: "Install stack orchestrator" - name: "Install stack orchestrator"
run: ./scripts/install-so.sh run: ./deployment-tools/scripts/install-so.sh
- name: "Clone target stack" - name: "Clone target stack"
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with: