Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pipelines/prebuilds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ trigger:
branches:
include:
- main
pr: none

resources:
repositories:
Expand Down Expand Up @@ -102,6 +103,7 @@ extends:
arch: arm64

- stage: Archive
dependsOn: Build
jobs:
- job: archive
pool:
Expand Down Expand Up @@ -130,7 +132,7 @@ extends:
outputs:
- output: pipelineArtifact
targetPath: $(Build.ArtifactStagingDirectory)/prebuilds
artifactName: 'prebuilds'
artifactName: 'prebuilds-$(Build.SourceVersion)'
steps:
- script: |
mkdir -p $(Build.ArtifactStagingDirectory)/prebuilds
Expand Down
4 changes: 2 additions & 2 deletions publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ extends:
definition: '647'
buildVersionToDownload: 'latestFromBranch'
branchName: 'refs/heads/main'
artifactName: 'prebuilds'
artifactName: 'prebuilds-$(Build.SourceVersion)'
targetPath: 'prebuilds'
- pwsh: |
Get-ChildItem -Path . -Recurse -Directory -Name "_manifest" | Remove-Item -Recurse -Force
Expand All @@ -70,7 +70,7 @@ extends:
definition: '647'
buildVersionToDownload: 'latestFromBranch'
branchName: 'refs/heads/main'
artifactName: 'prebuilds'
artifactName: 'prebuilds-$(Build.SourceVersion)'
targetPath: 'prebuilds'
- bash: chmod +x prebuilds/darwin-*/spawn-helper
displayName: 'Ensure spawn-helper is executable'
Expand Down