mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 04:30:37 +00:00
fix: manifest discovery, with debug
This commit is contained in:
parent
1b5ebd44d2
commit
88ba1eff83
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue