Skip to content

Commit

Permalink
add output
Browse files Browse the repository at this point in the history
  • Loading branch information
ludvigch committed Feb 3, 2025
1 parent 852803e commit 8959513
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ddc-multi-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
matrix:
os: [ubuntu-latest, ubuntu-22.04, ubuntu-20.04]
runs-on: ${{ matrix.os }}
outputs:
result_hash: ${{ steps.fin.outputs.sha256sum_stage2 }}
steps:
- uses: actions/checkout@v4
- name: Debug output
Expand All @@ -29,3 +31,6 @@ jobs:
run: cmp /usr/local/bin/cproc ./stage0/cproc
- name: DDC comparison
run: cmp ./stage0/cproc ./stage2/cproc
- id: fin
name: Export DDC result
run: sha256sum ./stage2/cproc | cut -d ' ' -f1 | awk '{print "sha256sum_stage2="$1}' >> "$GITHUB_OUTPUT"

0 comments on commit 8959513

Please sign in to comment.