dagger-for-github icon indicating copy to clipboard operation
dagger-for-github copied to clipboard

github action does not have stdout as output

Open clembo590 opened this issue 3 months ago • 0 comments

What is the issue?

The Show Dagger output prints nothing

jobs:
  hello-dagger:
    runs-on: ubuntu-latest
    steps:
      - name: hello
        uses: dagger/[email protected]
        with:
          module: github.com/shykes/daggerverse/hello
          call: hello --greeting Hola --name Jeremy
          version: "latest"  # semver vX.Y.Z}

      - name: Show Dagger output
        run: |
          echo "Dagger output:"
          echo "${{ steps.hello.outputs.stdout }}"

      - name: List all outputs of the Dagger step
        run: |
          echo '${{ toJson(steps.hello.outputs) }}'

Dagger version

registry.dagger.io/engine:v0.19.7

Steps to reproduce

Just run the pipeline I gave . the step Show Dagger output should print something...

Log output

No response

clembo590 avatar Dec 01 '25 11:12 clembo590