Remove artifact upload step from CI workflow to simplify build process and update summary messaging.
Some checks failed
Weekly NixOS Build & Cache / build-and-cache (push) Failing after 1m21s

This commit is contained in:
Danilo Reyes 2025-10-02 23:30:39 -06:00
parent f704871516
commit 988f53bd46

View File

@ -82,19 +82,11 @@ jobs:
echo "All schemes built and pushed successfully!" echo "All schemes built and pushed successfully!"
echo "=========================================" echo "========================================="
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: nixos-configurations
path: ./result-*
retention-days: 7
- name: Summary - name: Summary
run: | run: |
SCHEME_COUNT=$(echo "${{ steps.schemes.outputs.schemes }}" | wc -w) SCHEME_COUNT=$(echo "${{ steps.schemes.outputs.schemes }}" | wc -w)
echo "✅ Color scheme builds completed successfully!" echo "✅ Color scheme builds completed successfully!"
echo "- Built $SCHEME_COUNT schemes: ${{ steps.schemes.outputs.schemes }}" echo "- Built $SCHEME_COUNT schemes: ${{ steps.schemes.outputs.schemes }}"
echo "- Pushed all builds to Atticd cache" echo "- Pushed all builds to Atticd cache"
echo "- Uploaded artifacts for backup"
echo "" echo ""
echo "You can now switch schemes quickly without waiting for builds!" echo "You can now switch schemes quickly without waiting for builds!"