This file contains hidden or 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
#!/bin/bash | |
# Where the changelog file will be created | |
outputFile='%system.teamcity.build.tempDir%/releasenotesfile_%teamcity.build.id%.txt' | |
# the url of teamcity server | |
teamcityUrl='%teamcity.serverUrl%' | |
# username to access Teamcity REST API | |
username='%system.teamcity.auth.userId%' | |
# password to access Teamcity REST API | |
password='%system.teamcity.auth.password%' |