We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f0d689 commit 0398fd2Copy full SHA for 0398fd2
action.yml
@@ -63,7 +63,12 @@ runs:
63
output_file: ${{ env.PHP_CLASSES_FILTERED_FILE }}
64
65
- name: Generating generator config...
66
- run: php ${{ github.action_path }}/generate-config.php "${{ env.COPY_DATA_PATH }}/.phpdoc-md" "${{ env.PHP_CLASSES_FILTERED_FILE }}" "${{ inputs.class_root_namespace }}" "${{ inputs.output_path }}"
+ env:
67
+ ACTION_PATH: ${{ github.action_path }}
68
+ PHPDOCMD_FILE: ${{ env.$COPY_DATA_PATH }}/.phpdoc-md
69
+ CLASS_ROOT_NAMESPACE: ${{ inputs.class_root_namespace }}
70
+ DOCS_PATH: ${{ inputs.output_path }}
71
+ run: php $ACTION_PATH/generate-config.php "$PHPDOCMD_FILE" "$PHP_CLASSES_FILTERED_FILE" "$CLASS_ROOT_NAMESPACE" "$DOCS_PATH"
72
shell: bash
73
74
- name: Including documentation generator...
0 commit comments