Commit 2deccb5b by Adeel

CI: Stores build artifact (binding.node) for job.

* The artifact will be available under job details in `Artifacts` tab.
* URL format: `https://ci.appveyor.com/project/sass/node-sass/build/<build-id>/job/<job-id>/artifacts`.
parent c1030c9b
......@@ -21,3 +21,12 @@ install:
- npm install --msvs_version=2013
test_script: npm test
on_success:
# Save artifact with full qualified names of binding.node
# (which we use in node-sass-binaries repo)
- ps: Get-ChildItem .\vendor\**\*.node | % `
{
Push-AppveyorArtifact $_.FullName -FileName
(($_.FullName.Split('\\') | Select-Object -Last 2) -join '_')
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment