Skip to content

Commit 56b2690

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Fix creation of Draft release (#51159)
Summary: Pull Request resolved: #51159 This change fixes a syntax error in the GH Action that generates the draft PR. ## Changelog: [Internal] - Fix draft release generation Reviewed By: fabriziocucci, cortinico Differential Revision: D74322577 fbshipit-source-id: 0fcb03403ea35f7c64217bce5f1cbf93e7d5bd9a
1 parent 807dfb4 commit 56b2690

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/create-draft-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
with:
2525
script: |
2626
const {createDraftRelease} = require('./.github/workflow-scripts/createDraftRelease.js');
27-
const version = ${{ github.ref_name }}';
27+
const version = '${{ github.ref_name }}';
2828
const {isLatest} = require('./.github/workflow-scripts/publishTemplate.js');
2929
await createDraftRelease(version, isLatest(), '${{secrets.REACT_NATIVE_BOT_GITHUB_TOKEN}}');

0 commit comments

Comments
 (0)