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 action file is action.yaml as opposed to action.yml.
I do the following as per the readme here...
npx convert-action dist/index.js my-subfolder/action.yml
This throws.
Error: Unable to parse YAML file [dist/index.js]: end of the stream or a document separator is expected
It seems to be trying to parse the js file as YAML.
Am I doing something wrong here or should this work?
The text was updated successfully, but these errors were encountered:
Reading the code it looks like I got the args in reverse. Try the following:
npx convert-action my-subfolder/action.yml dist/index.js
Sorry, something went wrong.
Ah, good to know, thanks. It turns out, I'm using a compound action to use node.js v18, so this action is actually not helpful for my use anyway.
Feel free to close when you've updated the readme =]
This is resolved in #7
No branches or pull requests
My action file is action.yaml as opposed to action.yml.
I do the following as per the readme here...
npx convert-action dist/index.js my-subfolder/action.yml
This throws.
Error: Unable to parse YAML file [dist/index.js]: end of the stream or a document separator is expected
It seems to be trying to parse the js file as YAML.
Am I doing something wrong here or should this work?
The text was updated successfully, but these errors were encountered: