From 2700a6b2a5705cc66d05e8bc53ee1fad3212b7a7 Mon Sep 17 00:00:00 2001 From: Raphael Stolt Date: Mon, 3 Feb 2025 21:24:30 +0100 Subject: [PATCH 1/4] Enable lean releases --- .gitattributes | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..586fada --- /dev/null +++ b/.gitattributes @@ -0,0 +1,12 @@ +# This file was generated by the lean package validator (http://git.io/lean-package-validator). + +* text=auto eol=lf + +.gitattributes export-ignore +.github/ export-ignore +.gitignore export-ignore +.php-cs-fixer.dist.php export-ignore +Examples/ export-ignore +phpstan.neon export-ignore +phpunit.xml export-ignore +tests/ export-ignore From 68cbbe4d57b3dc6b6b4c0619edec1c8f0dc69243 Mon Sep 17 00:00:00 2001 From: elwafa Date: Thu, 6 Feb 2025 01:12:11 +0200 Subject: [PATCH 2/4] Update upload-artifact action to v4 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36d8b21..9d76831 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,7 +105,7 @@ jobs: - name: Upload test artifacts if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-results-${{ matrix.os }} path: | From c97efa00717c6b49dbdb8b57edbfb090637daae0 Mon Sep 17 00:00:00 2001 From: elwafa Date: Thu, 6 Feb 2025 01:17:08 +0200 Subject: [PATCH 3/4] Fix artifact upload conflict by ensuring unique names --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d76831..ce4bf91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,7 +107,7 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: test-results-${{ matrix.os }} + name: test-results-${{ matrix.os }}-${{ github.run_id }} path: | ./build/logs ./phpunit.xml From 920d975c1a91904ee9cd2659b88908f69fa396f4 Mon Sep 17 00:00:00 2001 From: elwafa Date: Thu, 6 Feb 2025 01:21:30 +0200 Subject: [PATCH 4/4] Fix artifact upload conflict by ensuring unique names --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce4bf91..bf8989d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,7 +107,7 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: test-results-${{ matrix.os }}-${{ github.run_id }} + name: test-results-${{ matrix.os }}-${{ matrix.php }} path: | ./build/logs ./phpunit.xml