Skip to content

Commit

Permalink
Add artifact capture
Browse files Browse the repository at this point in the history
  • Loading branch information
jlantz committed Oct 11, 2024
1 parent 245470b commit 0ef2cd3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/snapshot-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0ef2cd3

Please sign in to comment.