We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3325d9 commit b077b87Copy full SHA for b077b87
src/index.ts
@@ -63,9 +63,15 @@ const run = async () => {
63
64
const getVersion = async () => {
65
core.debug(`Fetching version artifact "${version}"`);
66
+
67
const artifact = (await artifactClient.getArtifact(version)).artifact
68
+ core.debug(`Version artifact ${artifact}`)
69
const artifactId = artifact.id
70
+ core.debug(`Version artifact id: ${artifactId}`)
71
72
const downloadPath = (await artifactClient.downloadArtifact(artifactId)).downloadPath
73
+ core.debug(`Version artifact downaloadPath: ${downloadPath}`)
74
75
if (downloadPath == null)
76
throw new Error("Download path for artifact ${version} is null");
77
0 commit comments