error with github actions - later resolved #248
-
Hey all - love this project! But when using the github actions, I received this error when running the below
Then I noticed the error expected a version number
And repushed the branch, and it worked (the Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi! Where did you see a sample telling to use the action without I just checked https://retype.com/guides/github-actions/ and it shows the right syntax. I'm not sure where you found example suggesting the use without a tag. We maintain tags in the |
Beta Was this translation helpful? Give feedback.
-
Oh, and by the way, mixing up tags between the actions ( |
Beta Was this translation helpful? Give feedback.
Hi! Where did you see a sample telling to use the action without
@v1
in the end? We should fix that if that's in any of our documentation.I just checked https://retype.com/guides/github-actions/ and it shows the right syntax. I'm not sure where you found example suggesting the use without a tag.
We maintain tags in the
@v1
and@v1.11
as well as the one you used@v1.11.2
so you don't need to change the action every new release. If you want to stick to latest 1.11, you can use@v1.11
, if you want to keep up-to-date as version 1 evolves, using@v1
is the way we recommend using it. Using the exact version tag is only intended when you want to exert strict control of the version being used, i…