Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgerlag committed Sep 27, 2024
1 parent 4fa510e commit c9b6537
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ jobs:
- name: Build
run: |
cd ${{ matrix.component.path }}
DOCKERX_OPTS="--output type=docker,dest=/${{ matrix.component.name }}.tar.gz --cache-to type=local,dest=/tmp/.buildx-cache,mode=max --cache-from type=local,src=/tmp/.buildx-cache" make
DOCKERX_OPTS="--output type=docker,dest=${{ github.workspace }}/${{ matrix.component.name }}.tar.gz --cache-to type=local,dest=/tmp/.buildx-cache,mode=max --cache-from type=local,src=/tmp/.buildx-cache" make
- name: Upload artifact
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: image-${{ matrix.component.name }}
path: /${{ matrix.component.name }}.tar.gz
path: ${{ github.workspace }}/${{ matrix.component.name }}.tar.gz


build-control-plane:
Expand Down Expand Up @@ -120,13 +120,13 @@ jobs:
- name: Build
run: |
cd ${{ matrix.component.path }}
DOCKERX_OPTS="--output type=docker,dest=/${{ matrix.component.name }}.tar.gz --cache-to type=local,dest=/tmp/.buildx-cache,mode=max --cache-from type=local,src=/tmp/.buildx-cache" make
DOCKERX_OPTS="--output type=docker,dest=${{ github.workspace }}/${{ matrix.component.name }}.tar.gz --cache-to type=local,dest=/tmp/.buildx-cache,mode=max --cache-from type=local,src=/tmp/.buildx-cache" make
- name: Upload artifact
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: image-${{ matrix.component.name }}
path: /${{ matrix.component.name }}.tar.gz
path: ${{ github.workspace }}/${{ matrix.component.name }}.tar.gz

build-sources:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -217,13 +217,13 @@ jobs:
- name: Build
run: |
cd ${{ matrix.component.path }}
DOCKERX_OPTS="--output type=docker,dest=/${{ matrix.component.name }}.tar.gz --cache-to type=local,dest=/tmp/.buildx-cache,mode=max --cache-from type=local,src=/tmp/.buildx-cache" make
DOCKERX_OPTS="--output type=docker,dest=${{ github.workspace }}/${{ matrix.component.name }}.tar.gz --cache-to type=local,dest=/tmp/.buildx-cache,mode=max --cache-from type=local,src=/tmp/.buildx-cache" make
- name: Upload artifact
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: image-${{ matrix.component.name }}
path: /${{ matrix.component.name }}.tar.gz
path: ${{ github.workspace }}/${{ matrix.component.name }}.tar.gz

build-reactions:
permissions:
Expand Down Expand Up @@ -301,14 +301,14 @@ jobs:
- name: Build
run: |
cd ${{ matrix.component.path }}
DOCKERX_OPTS="--output type=docker,dest=/${{ matrix.component.name }}.tar.gz --cache-to type=local,dest=/tmp/.buildx-cache,mode=max --cache-from type=local,src=/tmp/.buildx-cache" make
cd ${{ matrix.component.path }}
DOCKERX_OPTS="--output type=docker,dest=${{ github.workspace }}/${{ matrix.component.name }}.tar.gz --cache-to type=local,dest=/tmp/.buildx-cache,mode=max --cache-from type=local,src=/tmp/.buildx-cache" make
- name: Upload artifact
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: image-${{ matrix.component.name }}
path: /${{ matrix.component.name }}.tar.gz
path: ${{ github.workspace }}/${{ matrix.component.name }}.tar.gz

build-cli:
permissions:
Expand Down

0 comments on commit c9b6537

Please sign in to comment.