Skip to content

Commit

Permalink
debug: check GITHUB_ENV after assigning multiline build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
doebrowsk authored Oct 23, 2024
1 parent 227e201 commit 5355e85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dotnet-build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,11 @@ jobs:
echo "release_artifacts: $releaseArtifacts"
echo "Writing in as multiline github env variable"
echo "release_artifacts<<EOF" >> $GITHUB_ENV
echo $releaseArtifacts >> $GITHUB_ENV
echo "$releaseArtifacts" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
echo "Debug check of github env: ${GITHUB_ENV}"
- name: Check for manifest
if: success() && env.CREATE_RELEASE == 'True' && inputs.integration_type == 'orchestrator'
run: |
Expand Down

0 comments on commit 5355e85

Please sign in to comment.