List all commands available within Supported Software Documentation #8135
ciscorucinski
started this conversation in
Ideas
Replies: 1 comment
-
|
Hey @ciscorucinski. You can collect this information yourself by listing all executable files in each directory referenced in - run: |
IFS=:
for dir in $PATH
do
for file in $dir/*
do
if [ -x $file ]
then
echo $file
fi
done
doneI don't think there is a point to put a list of all available commands in documentation. Taking into account the overall amount of software that is installed on runners this list would be insanely huge. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have been checking out the Supported Software more often. This is where I knew that I could use the
jqcommand without having to install it within my workflow file.However, while looking at how to do things online, I noticed that I needed access to
seqortr, and it was my assumption that those were not supported software as they are not listed within the documentation at all. So I was trying to find alternative ways of doing these commands without installing them. However, I recently realized that those commands come fromcoreutilswhich is supported software.I would rather prefer to google search
github actions supported software, find the link which shows me what is available, and search forseqorpingand see that those are in fact available to me.However, knowing that each installed package could have multiple commands available to them, if I wanted to easily know if it was supported, I would have to do a more lengthy deep dive to find a command's package and then see if that package is available with my runner (add on top of that version differences)
Beta Was this translation helpful? Give feedback.
All reactions