Skip to content

Commit

Permalink
fix templating
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Jul 18, 2024
1 parent 5a4799a commit 1c23532
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dockerimage-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ jobs:
env.BUILDKIT_STEP_LOG_MAX_SPEED=-1
default-load=true
- name: Build the Docker images
run: make DISABLE_OPTIMIZATIONS=1 "OWNER=$OWNER_LC" build_{{matrix.arch}}
run: make DISABLE_OPTIMIZATIONS=1 "OWNER=$OWNER_LC" build_${{matrix.arch}}
- name: Export image
run: make "OWNER=$OWNER_LC" export_{{matrix.arch}}
run: make "OWNER=$OWNER_LC" export_${{matrix.arch}}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: docker_image_{{matrix.arch}}
name: docker_image_${{matrix.arch}}
path: hbb_*.tar

build_release:
Expand Down Expand Up @@ -111,6 +111,6 @@ jobs:
env.BUILDKIT_STEP_LOG_MAX_SPEED=-1
default-load=true
- name: Build the Docker images
run: make "OWNER=$OWNER_LC" build_{{matrix.arch}}
run: make "OWNER=$OWNER_LC" build_${{matrix.arch}}
- name: Tag and push the Docker images
run: make "OWNER=$OWNER_LC" release

0 comments on commit 1c23532

Please sign in to comment.