Skip to content

Commit

Permalink
Rename food job and fix reference
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Dec 22, 2023
1 parent 1a5476e commit d971bae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
cancel-in-progress: true

jobs:
foo:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -20,10 +20,10 @@ jobs:

test:
runs-on: ubuntu-latest
needs: [foo]
needs: [setup]
strategy:
matrix:
version: ${{ fromJSON(foo.outputs.versions) }}
version: ${{ fromJSON(needs.setup.outputs.versions) }}
steps:
- run: echo ${{ matrix.version }}

Expand Down

0 comments on commit d971bae

Please sign in to comment.