mirror of
https://gitea.com/actions/gitea-release-action.git
synced 2026-09-03 04:59:11 +00:00
Fix syntax error
This commit is contained in:
parent
fad97e6094
commit
d752d339f3
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -48206,7 +48206,7 @@ async function run() {
|
||||
*/
|
||||
async function createOrGetRelease(client, owner, repo, body) {
|
||||
try {
|
||||
console.log(`Checking for existing release at ${encodeURIComponent(body.tag)}`);
|
||||
console.log(`Checking for existing release at ${encodeURIComponent(body.tag_name)}`);
|
||||
let release = await client.repository.repoGetReleaseByTag({
|
||||
owner: owner,
|
||||
repo: repo,
|
||||
|
||||
2
main.js
2
main.js
@ -70,7 +70,7 @@ async function run() {
|
||||
*/
|
||||
async function createOrGetRelease(client, owner, repo, body) {
|
||||
try {
|
||||
console.log(`Checking for existing release at ${encodeURIComponent(body.tag)}`);
|
||||
console.log(`Checking for existing release at ${encodeURIComponent(body.tag_name)}`);
|
||||
let release = await client.repository.repoGetReleaseByTag({
|
||||
owner: owner,
|
||||
repo: repo,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user