Update .forgejo/workflows/demo.yaml
Some checks failed
UiNamed workflow / test (push) Failing after 8s

This commit is contained in:
julien.oculi 2025-02-22 01:11:31 +01:00
parent aaf7bbcd81
commit 5424424354

View file

@ -23,10 +23,15 @@ jobs:
- name: Test set variable
id: build
run: deno eval "Promise.resolve().then(_ => JSON.stringify(Deno.build, null, '\n')).then(console.log)" >> "$GITHUB_OUTPUT"
run: |
{
echo "BUILD<<EOF"
deno eval "console.log(JSON.stringify(Deno.build, null, '\n'))"
echo EOF
} >> "$GITHUB_OUTPUT"
- name: Test get variable
run: echo ${{ steps.build.outputs }}
run: echo ${{ steps.build.outputs.BUILD }}
- name: Test deno
run: deno --version