From 86af6434a922465bbeb14cd0f20f122b8ac58e87 Mon Sep 17 00:00:00 2001 From: Donkie Date: Thu, 28 Dec 2023 11:43:16 +0100 Subject: [PATCH] Fixed CI name collision with built docker images --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19998e6..35fa72f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,7 +128,7 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: spoolman + name: spoolman-image path: /tmp/spoolman.tar # # Build tester image for integration tests @@ -172,7 +172,7 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: spoolman-tester + name: spoolman-tester-image path: /tmp/spoolman-tester.tar # # Perform integration tests @@ -194,8 +194,8 @@ jobs: - name: Load built images run: | - docker load --input /tmp/spoolman/spoolman.tar - docker load --input /tmp/spoolman-tester/spoolman-tester.tar + docker load --input /tmp/spoolman-image/spoolman.tar + docker load --input /tmp/spoolman-tester-image/spoolman-tester.tar - name: Perform integration tests uses: isbang/compose-action@v1.4.1