We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96ba56a commit 04640e4Copy full SHA for 04640e4
.github/workflows/ci_steps.yml
@@ -161,6 +161,13 @@ jobs:
161
sort _build/install_manifest.txt | sed -e "s:^.*/_install/::" >> "_build/$INSTALL_MANIFEST"
162
shell: bash
163
164
+ - name: Upload install_manifest.txt
165
+ # Upload the manifest to make it possible to download for inspection and debugging
166
+ uses: actions/upload-artifact@v4
167
+ with:
168
+ name: ${{ env.INSTALL_MANIFEST }}
169
+ path: _build/${{ env.INSTALL_MANIFEST }}
170
+
171
- name: Validate install
172
if: ${{ inputs.validate_install == 'ON' }}
173
# Validate that the build has installed the proper files by comparing against the appropriate reference manifest
0 commit comments