Skip to content

Commit

Permalink
build: Use "prerelease" tag for dev branch builds
Browse files Browse the repository at this point in the history
We'll just delete and move the tag every time we do a dev branch
build. Also, only upload zip files, don't really need to upload nuget
packages and what not too.
  • Loading branch information
qdot committed Mar 4, 2019
1 parent d8d9dd8 commit 08cd4da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions azure-pipelines.yml
Expand Up @@ -149,9 +149,10 @@ jobs:
repositoryName: "buttplugio/buttplug-csharp"
action: "create"
target: "$(gitshorthash)"
tagSource: "auto"
tagSource: "manual"
tag: "prerelease"
title: "Buttplug C# CLI $(gitshorthash)"
assets: "$(Build.ArtifactStagingDirectory)/$(cliBuildName)/*"
assets: "$(Build.ArtifactStagingDirectory)/**/*.zip"
isPreRelease: eq(variables['Build.SourceBranch'], 'refs/heads/dev')
- job: "Linux"
pool:
Expand Down

0 comments on commit 08cd4da

Please sign in to comment.