From a8086b9615833792342df7fbc5516c7ff7f65e54 Mon Sep 17 00:00:00 2001 From: Thomas Barrett Date: Thu, 30 Mar 2023 14:03:46 +0100 Subject: [PATCH] v1.2 --- dist/index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index d489adf..6bc5eab 100644 --- a/dist/index.js +++ b/dist/index.js @@ -9610,7 +9610,7 @@ async function run() { const gh = github.getOctokit(process.env.GITHUB_TOKEN); // Get the input from the workflow file. - let tag_name = core.getInput('tag_ref', { required: true }); + let tag_name = core.getInput('tag_name', { required: true }); tag_name = tag_name.replace(/^refs\/tags\//, ''); const owner = core.getInput('owner', { required: true }); const repo = core.getInput('repo', { required: true }); diff --git a/package.json b/package.json index 7614ed0..ef18a77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "create-branch-from-tag", - "version": "1.1.1", + "version": "1.2", "description": "", "main": "index.js", "scripts": {