From 194acfcb002b83122e83b58df6bfeab3937e1630 Mon Sep 17 00:00:00 2001 From: Daniel Schmidt Date: Wed, 4 Dec 2024 16:22:33 -0800 Subject: [PATCH] bugfix: osfamily value --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 251e1bd..2b56733 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,8 +35,8 @@ jobs: strategy: fail-fast: true matrix: - base: - - osfamily + os_family: + - linux architecture: - amd64 - arm64 @@ -82,7 +82,7 @@ jobs: GIT_REF_NAME=${{ github.ref_name }} GIT_REPOSITORY_URL=${{ github.repositoryUrl }} GIT_SHA=${{ github.sha }} - platforms: ${{ matrix.osfamily }}/${{ matrix.architecture }} + platforms: ${{ matrix.os_family }}/${{ matrix.architecture }} push: false labels: ${{ steps.meta.outputs.labels }} tags: ${{ steps.meta.outputs.tags }} @@ -111,5 +111,5 @@ jobs: if: ${{ always() }} uses: actions/upload-artifact@v4 with: - name: test-results-${{ matrix.osfamily }}-${{ matrix.architecture }} + name: test-results-${{ matrix.os_family }}-${{ matrix.architecture }} path: tmp/artifacts