We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b1ff5 commit 8329109Copy full SHA for 8329109
action.yaml
@@ -12,12 +12,14 @@ runs:
12
shell: bash
13
- name: "Install Python"
14
uses: actions/setup-python@v5
15
+ working-directory: ${{ github.action_path }}
16
- run: echo "INSTALL UV"
17
18
- name: "Install uv"
19
uses: astral-sh/setup-uv@v6
20
21
- run: echo "RUN script"
22
23
- name: "Validate STACKIT Database ACLs"
- 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 }}
25
0 commit comments