From d14f17f0aca20506163e007f902c0be0c98fb435 Mon Sep 17 00:00:00 2001 From: Yuuichi Asahi Date: Fri, 26 Jul 2024 17:33:31 +0200 Subject: [PATCH] test upload-artifacts --- .github/workflows/__build_base.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/__build_base.yaml b/.github/workflows/__build_base.yaml index 744732e0..7ad3b500 100644 --- a/.github/workflows/__build_base.yaml +++ b/.github/workflows/__build_base.yaml @@ -77,7 +77,10 @@ jobs: docker/${{ matrix.image.name }} - name: Push Docker image - run: docker push ghcr.io/kokkos/kokkos-fft/base_${{ matrix.image.name }}_${{ inputs.image_suffix }}:${{ inputs.image_tag }} + uses: actions/upload-artifact@v4 + with: + name: base_${{ matrix.image.name }}_${{ inputs.image_suffix }}:${{ inputs.image_tag }} + path: ghcr.io/kokkos/kokkos-fft/base_${{ matrix.image.name }}_${{ inputs.image_suffix }}:${{ inputs.image_tag }} - name: Convert Docker image to Singularity run: singularity build base.sif docker://ghcr.io/kokkos/kokkos-fft/base_${{ matrix.image.name }}_${{ inputs.image_suffix }}:${{ inputs.image_tag }}