eric sciple %!s(int64=5) %!d(string=hai) anos
pai
achega
bb56c8569a
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      dist/index.js
  2. 1 1
      src/github-api-helper.ts

+ 1 - 1
dist/index.js

@@ -8398,7 +8398,7 @@ function downloadRepository(accessToken, owner, repo, ref, commit, repositoryPat
                 assert.ok(archiveUrl, `Expected GitHub API response to contain 'Location' header`);
                 // Download the archive
                 core.info('Downloading the archive'); // Do not print the archive URL because it has an embedded token
-                downloadFile(archiveUrl, fileStream);
+                yield downloadFile(archiveUrl, fileStream);
             }
             finally {
                 yield fileStreamClosed;

+ 1 - 1
src/github-api-helper.ts

@@ -64,7 +64,7 @@ export async function downloadRepository(
 
       // Download the archive
       core.info('Downloading the archive') // Do not print the archive URL because it has an embedded token
-      downloadFile(archiveUrl, fileStream)
+      await downloadFile(archiveUrl, fileStream)
     } finally {
       await fileStreamClosed
     }