Skip to content

Commit

Permalink
ci: fix shell builds
Browse files Browse the repository at this point in the history
  • Loading branch information
blaggacao committed Jun 22, 2023
1 parent 04422b7 commit 59c9623
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/std.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

build_cli:
needs: discover
if: fromJSON(needs.discover.outputs.hits).cli.build != ''
if: fromJSON(needs.discover.outputs.hits).cli.build != '{}'
strategy:
fail-fast: false
matrix:
Expand All @@ -68,7 +68,7 @@ jobs:

build_packages:
needs: discover
if: fromJSON(needs.discover.outputs.hits).packages.build != ''
if: fromJSON(needs.discover.outputs.hits).packages.build != '{}'
strategy:
fail-fast: false
matrix:
Expand All @@ -86,13 +86,13 @@ jobs:
discovery_json: ${{ toJSON(matrix.target) }}
extra_nix_config: ${{ needs.discover.outputs.nix_conf }}

build_devshells:
build_shells:
needs: discover
if: fromJSON(needs.discover.outputs.hits).devshells.build != ''
if: fromJSON(needs.discover.outputs.hits).shells.build != '{}'
strategy:
fail-fast: false
matrix:
target: ${{ fromJSON(needs.discover.outputs.hits).devshells.build }}
target: ${{ fromJSON(needs.discover.outputs.hits).shells.build }}
name: //${{ matrix.target.cell }}/${{ matrix.target.block }}/${{ matrix.target.name }}:${{ matrix.target.action }}
runs-on: ${{ inputs.runs-on }}
steps:
Expand Down

0 comments on commit 59c9623

Please sign in to comment.