File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 steps :
1212 - name : Build documentation site
1313 shell : pwsh
14- run : ' & "${{ github.action_path }}/src/main.ps1" -WorkingDirectory "${{ inputs.WorkingDirectory }}"'
14+ env :
15+ INPUT_WORKING_DIRECTORY : ${{ inputs.WorkingDirectory }}
16+ run : ' & "${{ github.action_path }}/src/main.ps1" -WorkingDirectory "$env:INPUT_WORKING_DIRECTORY"'
Original file line number Diff line number Diff line change 1515 steps :
1616 - name : Inject site scripts
1717 shell : pwsh
18- run : ' & "${{ github.action_path }}/src/main.ps1" -SitePath "${{ inputs.SitePath }}" -WorkflowPath "${{ inputs.WorkflowPath }}"'
18+ env :
19+ INPUT_SITE_PATH : ${{ inputs.SitePath }}
20+ INPUT_WORKFLOW_PATH : ${{ inputs.WorkflowPath }}
21+ run : ' & "${{ github.action_path }}/src/main.ps1" -SitePath "$env:INPUT_SITE_PATH" -WorkflowPath "$env:INPUT_WORKFLOW_PATH"'
Original file line number Diff line number Diff line change 1515 steps :
1616 - name : Structure site content and config
1717 shell : pwsh
18- run : ' & "${{ github.action_path }}/src/main.ps1" -WorkingDirectory "${{ inputs.WorkingDirectory }}" -Name "${{ inputs.Name }}"'
18+ env :
19+ INPUT_WORKING_DIRECTORY : ${{ inputs.WorkingDirectory }}
20+ INPUT_NAME : ${{ inputs.Name }}
21+ run : ' & "${{ github.action_path }}/src/main.ps1" -WorkingDirectory "$env:INPUT_WORKING_DIRECTORY" -Name "$env:INPUT_NAME"'
You can’t perform that action at this time.
0 commit comments