From 3124855a1f610b9166dcb68fef2206540fade38b Mon Sep 17 00:00:00 2001 From: Ningyuan Li Date: Mon, 4 Mar 2024 15:35:36 +0900 Subject: [PATCH] rename job --- .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 9ade38a..fd26939 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,8 +14,8 @@ on: - 'Linux ARM64' jobs: - filter: - name: Select Build Targets + machine-select: + name: Select Build Machine runs-on: ubuntu-latest outputs: matrix: ${{ steps.set-matrix.outputs.result }} @@ -34,10 +34,10 @@ jobs: build: name: Build for ${{ matrix.name }} - needs: filter + needs: machine-select strategy: matrix: - include: ${{ fromJson(needs.filter.outputs.matrix) }} + include: ${{ fromJson(needs.machine-select.outputs.matrix) }} runs-on: ${{ matrix.machine }} steps: