From 8d44a8dfdcf79ac3909a3df4893672ef48bbadcf Mon Sep 17 00:00:00 2001 From: Arthur Moore Date: Sun, 4 Aug 2024 03:30:11 -0400 Subject: [PATCH] ci: Upload generated images as artifacts --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5512956..7a7e9c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,6 +60,12 @@ jobs: working-directory: ./tests run: python3 -m unittest + - name: Upload Artifacts + uses: actions/upload-artifact@v4 + with: + name: images + path: images/**/*.png + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: false