From 4c189e1e5a7834e321ff39851be1f414816d30f3 Mon Sep 17 00:00:00 2001 From: Koen Van Looveren Date: Wed, 29 Nov 2023 21:58:14 +0100 Subject: [PATCH] fix: undefined function --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 85e0443..5c81cc0 100644 --- a/index.js +++ b/index.js @@ -83,7 +83,6 @@ async function run() { const remoteGitRepoUrl = `https://${githubToken}:x-oauth-basic@github.com/${process.env.GITHUB_REPOSITORY}.git` await runInWorkspace('git', ['push', remoteGitRepoUrl]) await runInWorkspace('git', ['push', remoteGitRepoUrl, '--tags']) - await uploadDartProject() } catch (error) { core.setFailed(`Action failed with error: ${error}`) }