Skip to content

Commit

Permalink
Fix save image step and restrict to create images for native target only
Browse files Browse the repository at this point in the history
  • Loading branch information
pzehner committed Jan 23, 2024
1 parent d331b07 commit 6299e60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ jobs:
cmake --build build -j 2
- name: Save image
run: docker commit nvidia_base ghcr.io/cexa-project/kokkos-fft/kokkos_fft_${{ matrix.backend.name }}
run: docker commit ghcr.io/cexa-project/kokkos-fft/base_${{ matrix.backend.name }} ghcr.io/cexa-project/kokkos-fft/kokkos_fft_${{ matrix.backend.name }}
if: ${{ matrix.target.name }} == "native"

- name: Install
run: |
Expand All @@ -132,3 +133,4 @@ jobs:
- name: Push image
run: docker push ghcr.io/cexa-project/kokkos-fft/kokkos_fft_${{ matrix.backend.name }}
if: ${{ matrix.target.name }} == "native"

0 comments on commit 6299e60

Please sign in to comment.