diff --git a/action.yml b/action.yml index 51ce317..28589f1 100644 --- a/action.yml +++ b/action.yml @@ -43,7 +43,10 @@ runs: - name: Discover manifest file id: manifest - run: echo "path=$(find ${{ inputs.path }} -maxdepth 1 -name "rokit.toml" -o -name "aftman.toml" -o -name "foreman.toml")" >> $GITHUB_OUTPUT + run: | + manifest_path=$(find ${{ inputs.path }} -maxdepth 1 -name "rokit.toml" -o -name "aftman.toml" -o -name "foreman.toml") + echo "::debug $manifest_path" + echo "path=$manifest_path" >> $GITHUB_OUTPUT shell: bash - name: Cache binaries