Skip to content

Commit 8b2f633

Browse files
authored
Move publish scripts to tools/publish-tools (#4466)
1 parent e61c516 commit 8b2f633

23 files changed

+7
-6
lines changed

publish-scripts/chocolatey/nuspec_template renamed to eng/tools/publish-tools/chocolatey/nuspec_template

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
<authors>Microsoft</authors>
88
<owners>nugetazurefunctions</owners>
99
<projectUrl>https://github.com/Azure/azure-functions-core-tools</projectUrl>
10-
<iconUrl>https://raw.githubusercontent.com/Azure/azure-functions-core-tools/refs/heads/main/publish-scripts/npm/assets/azure-functions-logo-color-raster.png</iconUrl>
11-
<licenseUrl>https://raw.githubusercontent.com/Azure/azure-functions-core-tools/refs/heads/main/LICENSE</licenseUrl>
10+
<icon>images\functions.png</icon>
11+
<license type="expression">MIT</license>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<tags>azure functions azure-function cli core-tools</tags>
1414
<summary>The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions.</summary>
1515
<description>The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions.</description>
1616
</metadata>
1717
<files>
18-
<file src="tools\**" target="tools" />
18+
<file src="tools\**" target="tools\" />
19+
<file src="..\..\..\res\functions.png" target="images\" />
1920
</files>
2021
</package>

publish-scripts/driver.py renamed to eng/tools/publish-tools/driver.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
def main(*args):
1010
# assume follow semantic versioning 2.0.0
11-
11+
1212
packageNamePostfix = ""
13-
13+
1414
print(f"args: {args} {len(args)}")
1515
if (len(args) >= 4):
1616
packageNamePostfix = "-" + args[3]
17-
17+
1818
constants.PACKAGENAME = constants.PACKAGENAME + packageNamePostfix
1919
print(f"constants.PACKAGENAME: {constants.PACKAGENAME}")
2020

0 commit comments

Comments
 (0)