1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

download build artifact

This commit is contained in:
Luca Casonato 2021-03-06 00:28:09 +01:00
parent aabb56a898
commit c4ea185fbf
No known key found for this signature in database
GPG key ID: 789878CF6382A84F
2 changed files with 12 additions and 5 deletions

View file

@ -382,7 +382,8 @@
"name": "Download build artifacts",
"uses": "actions/download-artifact@v2",
"with": {
"name": "build-linux-release"
"name": "build-linux-release",
"path": "target/release/"
}
},
{
@ -450,7 +451,8 @@
"name": "Download build artifacts",
"uses": "actions/download-artifact@v2",
"with": {
"name": "build-linux-debug"
"name": "build-linux-debug",
"path": "target/debug/"
}
},
{
@ -518,7 +520,8 @@
"name": "Download build artifacts",
"uses": "actions/download-artifact@v2",
"with": {
"name": "build-macos-release"
"name": "build-macos-release",
"path": "target/release/"
}
},
{
@ -586,7 +589,8 @@
"name": "Download build artifacts",
"uses": "actions/download-artifact@v2",
"with": {
"name": "build-windows-release"
"name": "build-windows-release",
"path": "target/release/"
}
},
{

View file

@ -189,7 +189,10 @@ function downloadBuildCache(os: string, kind: string): unknown[] {
{
name: "Download build artifacts",
uses: "actions/download-artifact@v2",
with: { name: `build-${os}-${kind}` },
with: {
name: `build-${os}-${kind}`,
path: `target/${kind}/`,
},
},
...(os != "windows"
? [