mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-11-17 03:19:48 +00:00
Allow override of target_commitish for updating
This commit is contained in:
@@ -167,7 +167,12 @@ export const release = async (
|
||||
});
|
||||
|
||||
const release_id = existingRelease.data.id;
|
||||
const target_commitish = existingRelease.data.target_commitish;
|
||||
let target_commitish: string;
|
||||
if (config.input_target_commitish) {
|
||||
target_commitish = config.input_target_commitish;
|
||||
} else {
|
||||
target_commitish = existingRelease.data.target_commitish;
|
||||
}
|
||||
const tag_name = tag;
|
||||
const name = config.input_name || tag;
|
||||
const body = `${existingRelease.data.body}\n${releaseBody(config)}`;
|
||||
|
||||
Reference in New Issue
Block a user