diff --git a/.github/workflows/snapshot-flow.yml b/.github/workflows/snapshot-flow.yml index cb73f54..8d3d507 100644 --- a/.github/workflows/snapshot-flow.yml +++ b/.github/workflows/snapshot-flow.yml @@ -122,3 +122,25 @@ jobs: run: | cci org scratch_delete ${{ inputs.org_name }} shell: bash + - name: Capture CumulusCI Build History + if: always() + run: | + cci history list + cci history dependencies + cci history dependencies --json > cci_dependencies_history.json + cci history list --json > cci_build_history.json + shell: bash + + - name: Upload CumulusCI Dependencies History + if: always() + uses: actions/upload-artifact@v4 + with: + name: cci-dependencies-history + path: cci_dependencies_history.json + + - name: Upload CumulusCI Build History + if: always() + uses: actions/upload-artifact@v4 + with: + name: cci-build-history + path: cci_build_history.json \ No newline at end of file