-
Notifications
You must be signed in to change notification settings - Fork 894
ci: add Chocolatey support #8921
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
01bccb6
ci: add Chocolatey manifest
phorcys420 ea2a193
ci: add chocolatey job to release action
phorcys420 9222a8d
chore(ci): do not run winget/chocolatey in dry-run
phorcys420 09c4ce2
ci: update license in chocolatey nuspec
phorcys420 7de6b6e
ci: update chocolatey license to ToS
phorcys420 b69f74e
ci: remove semicolons from chocolatey install script
phorcys420 eda20c1
ci: remove useless comment from chocolatey workflow
phorcys420 d8e18a5
fix(ci): fix typo in `choco apikey` command
phorcys420 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Read this before creating packages: https://docs.chocolatey.org/en-us/create/create-packages --> | ||
<!-- 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). --> | ||
|
||
<!-- Test your packages in a test environment: https://github.com/chocolatey/chocolatey-test-environment --> | ||
<!-- 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. --> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
<metadata> | ||
<!-- == PACKAGE SPECIFIC SECTION == --> | ||
<!-- This section is about this package, although id and version have ties back to the software --> | ||
<!-- 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 --> | ||
<!-- If the software is cross-platform, attempt to use the same id as the debian/rpm package(s) if possible. --> | ||
<id>coder</id> | ||
<version>$version$</version> | ||
<packageSourceUrl>https://github.com/coder/coder/blob/main/scripts/chocolatey</packageSourceUrl> | ||
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. --> | ||
<owners>Coder Technologies\, Inc.</owners> | ||
<!-- ============================== --> | ||
|
||
<!-- == SOFTWARE SPECIFIC SECTION == --> | ||
<!-- This section is about the software itself --> | ||
<title>Coder (Install)</title> | ||
<authors>Coder Technologies\, Inc.</authors> | ||
<projectUrl>https://coder.com</projectUrl> | ||
<iconUrl>https://github.com/coder/presskit/raw/main/logos/coder%20logo%20black%20square.png?raw=true</iconUrl> | ||
<copyright>Coder Technologies, Inc.</copyright> | ||
<licenseUrl>https://coder.com/legal/terms-of-service</licenseUrl> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
<projectSourceUrl>https://github.com/coder/coder.git</projectSourceUrl> | ||
<docsUrl>https://coder.com/docs/v2/latest</docsUrl> | ||
<bugTrackerUrl>https://github.com/coder/coder/issues</bugTrackerUrl> | ||
<tags>coder remote-dev terraform development</tags> | ||
<summary>Remote development environments on your infrastructure provisioned with Terraform</summary> | ||
<description>Remote development environments on your infrastructure provisioned with Terraform</description> | ||
</metadata> | ||
<files> | ||
<file src="$binary_path$" target="tools/coder.exe" /> | ||
</files> | ||
</package> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.