Replies: 1 comment 1 reply
-
|
Is this a variant of the fix applied in ed51fe7? I can't quite make sense of |
Beta Was this translation helpful? Give feedback.
1 reply
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.
Uh oh!
There was an error while loading. Please reload this page.
-
I get an error with
devwhen entering my project.The context:
$ tea --version tea 1.0.0-alpha.3 $ cat elixir_script/.tea.yaml dependencies: elixir-lang.org: =1.15.4 erlang.org: =26.0.2 $ cat elixir_script/action.yml name: Elixir Script author: Jon Lauridsen description: Run simple Elixir scripts branding: color: orange icon: code inputs: script: description: The script to run required: true debug: description: Whether to tell the GitHub client to log details of its requests. true or false. Default is to run in debug mode when the GitHub Actions step debug logging is turned on. default: ${{ runner.debug == '1' }} outputs: result: description: The stringified return value of the script runs: using: docker image: DockerfileAnd
deverrors when entering the folder:This error is caused by the presence of the
action.ymlfile, if I delete it thendevworks:Beta Was this translation helpful? Give feedback.
All reactions