We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5797b4 commit ce607f0Copy full SHA for ce607f0
index.js
@@ -424,6 +424,10 @@ async function run() {
424
commit = commitData.message;
425
core.debug(`The head commit is: ${commit}`);
426
}
427
+ } else if (context.eventName === 'release') {
428
+ const tagName = context.payload.release.tag_name;
429
+ ref = `refs/tags/${tagName}`;
430
+ core.debug(`The release ref is: ${ref}`);
431
432
433
const deploymentUrl = await vercelDeploy(ref, commit);
0 commit comments