Skip to content

Commit 513c3a6

Browse files
committed
ci: add Chocolatey manifest
1 parent 75fcc24 commit 513c3a6

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

scripts/chocolatey/coder.nuspec

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Read this before creating packages: https://docs.chocolatey.org/en-us/create/create-packages -->
3+
<!-- It is especially important to read the above link to understand additional requirements when publishing packages to the community feed aka dot org (https://community.chocolatey.org/packages). -->
4+
5+
<!-- Test your packages in a test environment: https://github.com/chocolatey/chocolatey-test-environment -->
6+
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
7+
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
8+
<metadata>
9+
<!-- == PACKAGE SPECIFIC SECTION == -->
10+
<!-- This section is about this package, although id and version have ties back to the software -->
11+
<!-- id is lowercase and if you want a good separator for words, use '-', not '.'. Dots are only acceptable as suffixes for certain types of packages, e.g. .install, .portable, .extension, .template -->
12+
<!-- If the software is cross-platform, attempt to use the same id as the debian/rpm package(s) if possible. -->
13+
<id>coder</id>
14+
<version>$version$</version>
15+
<packageSourceUrl>https://github.com/coder/coder/blob/main/scripts/chocolatey</packageSourceUrl>
16+
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
17+
<owners>Coder Technologies\, Inc.</owners>
18+
<!-- ============================== -->
19+
20+
<!-- == SOFTWARE SPECIFIC SECTION == -->
21+
<!-- This section is about the software itself -->
22+
<title>Coder (Install)</title>
23+
<authors>Coder Technologies\, Inc.</authors>
24+
<projectUrl>https://coder.com</projectUrl>
25+
<iconUrl>https://github.com/coder/presskit/raw/main/logos/coder%20logo%20black%20square.png?raw=true</iconUrl>
26+
<!--<copyright>Coder Technologies, Inc.</copyright>-->
27+
<licenseUrl>https://github.com/coder/coder/blob/main/LICENSE</licenseUrl>
28+
<!--<requireLicenseAcceptance>true</requireLicenseAcceptance>-->
29+
<projectSourceUrl>https://github.com/coder/coder.git</projectSourceUrl>
30+
<docsUrl>https://coder.com/docs/v2/latest</docsUrl>
31+
<bugTrackerUrl>https://github.com/coder/coder/issues</bugTrackerUrl>
32+
<tags>coder remote-dev terraform development</tags>
33+
<summary>Remote development environments on your infrastructure provisioned with Terraform</summary>
34+
<description>Remote development environments on your infrastructure provisioned with Terraform</description>
35+
</metadata>
36+
<files>
37+
<file src="$binary_path$" target="tools/coder.exe" />
38+
</files>
39+
</package>

0 commit comments

Comments
 (0)