Skip to content

Commit

Permalink
wip: fix keys
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Sep 20, 2024
1 parent 127af53 commit d44edee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: ./.github/workflows/run.yml
needs: [discover]
with:
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^check.*']) }}
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^check.*$']) }}
forge_version: ${{ inputs.forge_version }}
secrets:
earthly_token: ${{ secrets.earthly_token }}
Expand All @@ -69,7 +69,7 @@ jobs:
uses: ./.github/workflows/run.yml
needs: [discover, check]
with:
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^build.*']) }}
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^build.*$']) }}
forge_version: ${{ inputs.forge_version }}
secrets:
earthly_token: ${{ secrets.earthly_token }}
Expand All @@ -78,7 +78,7 @@ jobs:
uses: ./.github/workflows/run.yml
needs: [discover, check, build]
with:
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^test.*']) }}
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^test.*$']) }}
forge_version: ${{ inputs.forge_version }}
secrets:
earthly_token: ${{ secrets.earthly_token }}
Expand All @@ -87,7 +87,7 @@ jobs:
uses: ./.github/workflows/publish.yml
needs: [discover, check, build, test]
with:
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['publish']) }}
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^publish.*$']) }}
forge_version: ${{ inputs.forge_version }}
secrets:
earthly_token: ${{ secrets.earthly_token }}
Expand All @@ -96,7 +96,7 @@ jobs:
uses: ./.github/workflows/release.yml
needs: [discover, check, build, test]
with:
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['release']) }}
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^release.*$']) }}
forge_version: ${{ inputs.forge_version }}
secrets:
earthly_token: ${{ secrets.earthly_token }}

0 comments on commit d44edee

Please sign in to comment.