From 089c883cdb8dfa125e56ef8cb170644d7d9d1513 Mon Sep 17 00:00:00 2001 From: Ditmar Visser Date: Wed, 11 Jun 2025 19:14:28 +0000 Subject: [PATCH] fix: no relative path in artifact --- .gitea/workflows/provision_configure.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/provision_configure.yaml b/.gitea/workflows/provision_configure.yaml index 4bd6931..4282550 100644 --- a/.gitea/workflows/provision_configure.yaml +++ b/.gitea/workflows/provision_configure.yaml @@ -61,11 +61,14 @@ jobs: - name: Terraform Apply run: terraform apply -auto-approve + - name: Copy inventory file to workspace + run: cp ../ansible/inventory.ini ./inventory.ini + - name: Upload inventory as artifact uses: actions/upload-artifact@v4 with: name: ansible_inventory - path: ../ansible/inventory.ini + path: inventory.ini ansible: name: Ansible Apply