-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use single extension with prerelease flag via pipeline parameter (#741)…
… (#757) * Use single extension with prerelease flag via pipelien parameter * cleanup * Use Release-It to handle incrementing the version in official builds * Remove Version variable, set values from NPM package after release-it
- Loading branch information
1 parent
91f7da7
commit 0dedc48
Showing
5 changed files
with
3,809 additions
and
433 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
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,34 @@ | ||
# https://github.com/release-it/release-it/blob/master/config/release-it.json | ||
|
||
hooks: {} | ||
|
||
# https://github.com/release-it/release-it/blob/master/docs/git.md | ||
git: | ||
addUntrackedFiles: false | ||
commit: false | ||
push: false # ADO build pushes the tag when build is complete, and fails if it's already there | ||
# need to specify pushRepo, since AzDO insists on disconnected refs, breaking upstream | ||
requireUpstream: false | ||
pushArgs: [ '--tags' ] | ||
pushRepo: https://github.com/microsoft/powerplatform-vscode | ||
|
||
# requireBranch: main | ||
requireCommits: false | ||
requireCleanWorkingDir: false | ||
tag: true | ||
tagArgs: [ '--force' ] | ||
tagAnnotation: | | ||
build ${version}: | ||
${changelog} | ||
tagName: 'v${version}' | ||
getLatestTagFromAllRefs: true | ||
|
||
#https://github.com/release-it/release-it/blob/master/docs/npm.md | ||
npm: | ||
ignoreVersion: true | ||
publish: false | ||
|
||
# https://github.com/release-it/release-it/blob/master/docs/github-releases.md | ||
github: | ||
draft: true | ||
release: false |
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
Oops, something went wrong.