1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-10-05 19:30:59 +00:00

fix #127 - force eval as a boolean (#131)

This commit is contained in:
Casey Lee 2020-03-06 11:30:39 -08:00 committed by GitHub
parent 965f86d04e
commit c64bbd5c93
3 changed files with 25 additions and 0 deletions

View file

@ -11,11 +11,18 @@ jobs:
run: echo $foo | grep bar
- name: TEST set-output
id: set_output
run: echo "::set-output name=zoo::zar"
#- run: echo "::add-path::/zip"
#- run: echo $PATH | grep /zip
- name: TEST conditional
if: steps.set_output.outputs.zoo
run: echo "::set-env name=cond_env::foo"
- name: TEST conditional (cont.)
run: echo $cond_env | grep foo
- name: TEST debug, warning, error
run: |
echo "::debug file=app.js,line=100,col=20::Hello debug!"