Skip to content

Commit

Permalink
Fix EAS Build Workflow using incorrect syntax for step outputs (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-leyshon authored May 27, 2024
1 parent e24301f commit d7ec8fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/easBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: github.event_name != 'workflow_dispatch'
uses: myrotvorets/[email protected]
with:
sha: ${{ steps.pr-branch-info.head_sha }}
sha: ${{ steps.pr-branch-info.outputs.head_sha }}
status: pending

- name: Checkout PR branch
Expand Down Expand Up @@ -60,5 +60,5 @@ jobs:
uses: myrotvorets/[email protected]
if: always() && github.event_name != 'workflow_dispatch'
with:
sha: ${{ steps.pr-branch-info.head_sha }}
sha: ${{ steps.pr-branch-info.outputs.head_sha }}
status: ${{ job.status }}

0 comments on commit d7ec8fa

Please sign in to comment.