feat(action): add step to print action path

- Adds a step to output the GitHub action path for debugging
- Improves visibility into the action's runtime environment
This commit is contained in:
2025-05-26 16:40:41 +02:00
parent 1a65639e71
commit c76a1d2eaa

View File

@@ -32,6 +32,11 @@ inputs:
runs:
using: "composite"
steps:
- name: Print action path
shell: bash
run: |
echo "Action path: ${{ github.action_path }}"
- name: Fetch release from Gitea
shell: bash
run: |