Skip to content

Commit

Permalink
Add some logging to help troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesDawson committed Sep 11, 2024
1 parent 6ffb0fa commit 35d4034
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions actions/run-build-process/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ runs:
- name: Set defaults
id: set_defaults
run: |
echo "inputs: ${{ toJson(inputs) }}"
echo "ref: ${{ github.ref }}"
echo "CODE_COVERAGE_SUMMARY_FILE=${{ inputs.codeCoverageSummaryDir || '_codeCoverage' }}" >> $GITHUB_OUTPUT
echo "CODE_COVERAGE_SUMMARY_FILE=${{ inputs.codeCoverageSummaryFile || 'SummaryGithub.md' }}" >> $GITHUB_OUTPUT
echo "DEFAULT_BUILD_TASKS=${{ (inputs.forcePublish == 'true' || startsWith(github.ref, 'refs/tags/')) && 'FullBuildAndPublish' || 'FullBuild' }}" >> $GITHUB_OUTPUT
Expand Down
1 change: 1 addition & 0 deletions actions/run-scripted-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ runs:
name: ${{ inputs.displayName }}
run: |
$tasks = "${{ inputs.tasks }}" -split ","
Write-Host "Running Tasks: $tasks"
${{ inputs.buildScriptPath }} -Tasks $tasks `
-Configuration ${{ inputs.configuration }}
shell: pwsh
Expand Down

0 comments on commit 35d4034

Please sign in to comment.