Skip to content

Commit

Permalink
rename job
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Mar 4, 2024
1 parent 59d7c99 commit 3124855
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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:
Expand Down

0 comments on commit 3124855

Please sign in to comment.