-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move github release steps to separate pipeline
- Loading branch information
1 parent
b144037
commit 73bf501
Showing
2 changed files
with
54 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
pool: | ||
vmImage: 'ubuntu-latest' | ||
|
||
# Only run when main build pipeline completes, and only for main branch builds | ||
trigger: none | ||
resources: | ||
pipelines: | ||
- pipeline: build | ||
source: EverestAPI.Everest | ||
trigger: | ||
branches: | ||
include: | ||
- dev | ||
|
||
steps: | ||
# Download artifacts from build pipeline | ||
- task: DownloadBuildArtifacts@1 | ||
inputs: | ||
buildType: specific | ||
project: Everest | ||
pipeline: EverestAPI.Everest | ||
specificBuildWithTriggering: true | ||
downloadType: specific | ||
downloadPath: $(Build.ArtifactStagingDirectory) | ||
|
||
# Define build_number variable and zip build artifacts | ||
- script: | | ||
declare -i BUILD_NUMBER=$(Build.BuildId)+$(Build.BuildIdOffset) | ||
echo "##vso[task.setvariable variable=build_number]$BUILD_NUMBER" | ||
zip -r $(Build.ArtifactStagingDirectory)/main.zip $(Build.ArtifactStagingDirectory)/main/ | ||
zip -r $(Build.ArtifactStagingDirectory)/olympus-meta.zip $(Build.ArtifactStagingDirectory)/olympus-meta/ | ||
zip -r $(Build.ArtifactStagingDirectory)/olympus-build.zip $(Build.ArtifactStagingDirectory)/olympus-build/ | ||
zip -r $(Build.ArtifactStagingDirectory)/lib-stripped.zip $(Build.ArtifactStagingDirectory)/lib-stripped/ | ||
# Create GitHub release for new stable versions. | ||
- task: GitHubRelease@1 | ||
displayName: 'Create GitHub Release' | ||
condition: succeeded() | ||
inputs: | ||
githubConnection: 0x0ade-bot | ||
repositoryName: EverestAPI/Everest | ||
action: 'create' | ||
target: '$(Build.SourceVersion)' | ||
tagSource: 'userSpecifiedTag' | ||
tag: 'stable-1.$(build_number).0' | ||
title: 'Stable Build $(build_number)' | ||
assets: | | ||
'$(Build.ArtifactStagingDirectory)/main.zip' | ||
'$(Build.ArtifactStagingDirectory)/olympus-meta.zip' | ||
'$(Build.ArtifactStagingDirectory)/olympus-build.zip' | ||
'$(Build.ArtifactStagingDirectory)/lib-stripped.zip' | ||
isDraft: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters