Skip to content

Commit 8329109

Browse files
Add working dir
1 parent 86b1ff5 commit 8329109

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

action.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ runs:
1212
shell: bash
1313
- name: "Install Python"
1414
uses: actions/setup-python@v5
15+
working-directory: ${{ github.action_path }}
1516
- run: echo "INSTALL UV"
1617
shell: bash
1718
- name: "Install uv"
1819
uses: astral-sh/setup-uv@v6
20+
working-directory: ${{ github.action_path }}
1921
- run: echo "RUN script"
2022
shell: bash
2123
- name: "Validate STACKIT Database ACLs"
22-
run: uv run src/main.py validate-org ${{ inputs.organisation_id }}
24+
run: uv run ${{ github.action_path }}/src/main.py validate-org ${{ inputs.organisation_id }}
2325
shell: bash

0 commit comments

Comments
 (0)