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:
parent
aabb56a898
commit
c4ea185fbf
2 changed files with 12 additions and 5 deletions
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
@ -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/"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -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"
|
||||
? [
|
||||
|
|
Loading…
Reference in a new issue