mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +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
|
- name: Discover manifest file
|
||||||
id: manifest
|
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
|
shell: bash
|
||||||
|
|
||||||
- name: Cache binaries
|
- name: Cache binaries
|
||||||
|
|
Loading…
Reference in a new issue