Skip to content

Commit

Permalink
Update GitHub Actions workflow to save events instead of showing all …
Browse files Browse the repository at this point in the history
…output (#143)
  • Loading branch information
kylewlacy authored Dec 2, 2024
1 parent e4f15dc commit 3b9b281
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,18 @@ jobs:
run: |
for project in packages/*; do
echo "::group::$project"
brioche build -p "$project" --check --sync --locked
brioche build -p "$project" --check --sync --locked --display plain-reduced
echo "::endgroup::"
done
env:
BRIOCHE_REGISTRY_PASSWORD: ${{ secrets.BRIOCHE_REGISTRY_PASSWORD }}
- name: Save failed processes
if: failure()
uses: actions/upload-artifact@v4
with:
name: process-events
path: ~/.local/share/brioche/process-temp/*/events.bin.zst
compression-level: 0

publish:
name: Publish packages
Expand Down

0 comments on commit 3b9b281

Please sign in to comment.