Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderdewit authored Oct 9, 2024
1 parent 7ed3a02 commit a32e51f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: ubuntu-latest
outputs:
packages_updated: ${{ steps.check_packages.outputs.packages_updated }} # Reference the output here
packages_updated: ${{ env.packages_updated }} # Reference the output here

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -65,4 +65,4 @@ jobs:
run: dotnet test --no-build --verbosity normal

- name: Debug Output # Debug step to log the value of packages_updated
run: echo "Packages Updated:" ${{ steps.check_packages.outputs.packages_updated }}
run: echo "Packages Updated:" ${{ env.packages_updated }}

0 comments on commit a32e51f

Please sign in to comment.