Skip to content

Commit

Permalink
Fix new worfklow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin-Radecki committed Aug 17, 2023
1 parent 5281ff6 commit ae0fe1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly-logic-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ jobs:
build-test-node-and-runtime:
name: Build test node and runtime
if: ${{ needs.check-if-featurenet-ecr-image-exists.outputs.image_exists == "false" }}
if: needs.check-if-featurenet-ecr-image-exists.outputs.image_exists == "false"
needs: [check-if-featurenet-ecr-image-exists]
uses: ./.github/workflows/_build-test-node-and-runtime.yml
secrets: inherit

store-test-node-and-runtime:
name: Store test node and runtime in Devnet bucket
if: ${{ needs.check-if-featurenet-ecr-image-exists.outputs.image_exists == "false" }}
if: needs.check-if-featurenet-ecr-image-exists.outputs.image_exists == "false"
runs-on: ubuntu-20.04
needs: [build-test-node-and-runtime]
steps:
Expand All @@ -75,7 +75,7 @@ jobs:

push-featurnet-node-image-to-ecr:
needs: [store-test-node-and-runtime]
if: ${{ needs.check-if-featurenet-ecr-image-exists.outputs.image_exists == "false" }}
if: needs.check-if-featurenet-ecr-image-exists.outputs.image_exists == "false"
name: Build and push PR test docker image to ECR
uses: ./.github/workflows/_build-and-push-pull-request-image-to-featurenets.yml
secrets: inherit
Expand Down

0 comments on commit ae0fe1c

Please sign in to comment.