Skip to content

Commit

Permalink
ci: treat ref as string when triggering release build
Browse files Browse the repository at this point in the history
  • Loading branch information
angusbayley committed Dec 13, 2024
1 parent 9d8e34e commit b0ae27d
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 b0ae27d

Please sign in to comment.