Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oshadura committed Feb 1, 2024
1 parent 4dff244 commit 0e2180c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
fail-fast: false
matrix:
image_dir: [basev0, dask]
flavour: [alma8, ubuntu]
distro: [alma8, ubuntu]
python: ["3.9", "3.10", "3.11"]
exclude:
- image_dir: alma8
python: 3.9
name: ${{ matrix.image_dir }}-${{ matrix.flavour }}-${{ matrix.python }}
name: ${{ matrix.image_dir }}-${{ matrix.distro }}-${{ matrix.python }}
runs-on: ubuntu-latest
steps:

Expand Down Expand Up @@ -62,9 +62,9 @@ jobs:
env:
image_dir: ${{ matrix.image_dir }}
python: ${{ matrix.python }}
flavour: ${{ matrix.flavour }}
distro: ${{ matrix.distro }}
run: |
image="coffeateam/coffea-${image_dir}-${flavour}"
image="coffeateam/coffea-${image_dir}-${distro}"
if [ ${image_dir} == 'basev0' ]; then
tag="${image}:${releasev0}-py${python}"
Expand All @@ -81,8 +81,8 @@ jobs:
with:
load: true
tags: ${{ steps.tags.outputs.tag }}
context: ${{ matrix.image_dir }}/${{ matrix.flavour }}
file: ${{ matrix.image_dir }}//${{ matrix.flavour }}/Dockerfile
context: ${{ matrix.image_dir }}/${{ matrix.distro }}
file: ${{ matrix.image_dir }}/${{ matrix.distro }}/Dockerfile
build-args: |
python=${{ matrix.python }}
release=${{ env.release }}
Expand Down

0 comments on commit 0e2180c

Please sign in to comment.