moving set-output to GITHUB_OUTPUT the output does not have value #36677
-
| I have seen some warnings about  The result is that the same input I pass to  The string is only set on  the funny thing is that values are set, you can see the values when you enable debug So I think that those outputs only live in the context of the job created them, and cannot be exported to another job, in that case, the behavior is different than   | 
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 6 replies
-
| 
 You have a typo in these lines You access versions1 / versions2 in later steps, but you are writing version1 / version2 (without a s) into GITHUB_OUTPUT. | 
Beta Was this translation helpful? Give feedback.
-
| I seem to run into a weird error when migrating to $GITHUB_OUTPUT Am i overlooking something?  | 
Beta Was this translation helpful? Give feedback.
-
| any updates? this happens to me when running the "wsl bash" on windows     - name: Parse key [WIN]
      id: parser_win
      if: runner.os == 'Windows'
      shell: wsl bash --noprofile --norc -euo pipefail "$(s="$(wslpath '{0}')" && sed -i 's/\r$//' "$s" && echo "$s")"
      run: |
        s=$(wslpath "${{ github.action_path }}/parser.sh")
        chmod +x "$s"
        "$s" "${{ inputs.key }}"GITHUB_OUTPUT is unbound | 
Beta Was this translation helpful? Give feedback.
-
| GITHUB_OUTPUT is not available in the version of the runner shipped with any enterprise server version. 
 No mention of deprecation of  Does anyone know if or when this feature will be coming to GHES? | 
Beta Was this translation helpful? Give feedback.
-
| While in this case there was a typo, I'd want to spread the word about the other possible cause of this issue. If you happen to run the jobs on windows runner you'd need to do  | 
Beta Was this translation helpful? Give feedback.
-
| I have been facing kind of similar issue, the output from the build job is not able to pass to the deploy job, am just getting an empty string. Can anyone please take a look?  | 
Beta Was this translation helpful? Give feedback.
You have a typo in these lines
You access versions1 / versions2 in later steps, but you are writing version1 / version2 (without a s) into GITHUB_OUTPUT.