fix: manifest discovery, with debug

This commit is contained in:
Erica Marigold 2024-07-15 19:46:20 +05:30
parent 1b5ebd44d2
commit 88ba1eff83
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -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