File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9624,7 +9624,7 @@ async function run() {
9624
9624
const octokit = github.getOctokit(process.env.GITHUB_TOKEN);
9625
9625
9626
9626
// Get owner and repo from context of payload that triggered the action
9627
- const { owner: currentOwner, repo: currentRepo } = context.repo;
9627
+ const { owner: currentOwner, repo: currentRepo } = github. context.repo;
9628
9628
9629
9629
// Get the inputs from the workflow file: https://github.com/actions/toolkit/tree/master/packages/core#inputsoutputs
9630
9630
const tagName = core.getInput('tag_name', { required: true });
@@ -9635,7 +9635,7 @@ async function run() {
9635
9635
const body = core.getInput('body', { required: false });
9636
9636
const draft = core.getInput('draft', { required: false }) === 'true';
9637
9637
const prerelease = core.getInput('prerelease', { required: false }) === 'true';
9638
- const commitish = core.getInput('commitish', { required: false }) || context.sha;
9638
+ const commitish = core.getInput('commitish', { required: false }) || github. context.sha;
9639
9639
9640
9640
const bodyPath = core.getInput('body_path', { required: false });
9641
9641
const owner = core.getInput('owner', { required: false }) || currentOwner;
You can’t perform that action at this time.
0 commit comments