We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My input YAML file has these values.
domain_name: domain env_name: dev dataset_id: ["dataset_name1", "dataset_name2"]
This code is printing an empty value for dataset_id
- name: Read YAML file id: read-yaml-file uses: pietrobolcato/[email protected] with: config: ${{ github.workspace }}/${{ steps.run_git_diff.outputs.file_name }} - name: Get dataset name id: get_ds_name run: | echo "dataset_id=${{ steps.read-yaml-file.outputs['dataset_id'] }}"
Can someone tell me why?
The text was updated successfully, but these errors were encountered:
I'm seeing something similar. The action can read a scalar variable in YAML but not a dict.
Sorry, something went wrong.
This should be fixed by #6. You would be able to access this using dataset_id.array.
dataset_id.array
No branches or pull requests
My input YAML file has these values.
This code is printing an empty value for dataset_id
Can someone tell me why?
The text was updated successfully, but these errors were encountered: