Skip to content

Commit

Permalink
Merge pull request #8681 from LedgerHQ/support/fix-release-final-scri…
Browse files Browse the repository at this point in the history
…pt-trigger

treat ref as string when triggering release build
  • Loading branch information
angusbayley authored Dec 13, 2024
2 parents 018f557 + b0ae27d commit a1a9629
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-final.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
ref: "main",
workflow_id: "release-desktop.yml",
inputs: {
branch: ${{ inputs.ref }}
branch: "${{ inputs.ref }}"
}
});
- uses: actions/github-script@v7
Expand All @@ -158,6 +158,6 @@ jobs:
ref: "main",
workflow_id: "release-mobile.yml",
inputs: {
ref: ${{ inputs.ref }}
ref: "${{ inputs.ref }}"
}
});

0 comments on commit a1a9629

Please sign in to comment.