-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added: Install monika via Chocolatey (#623)
* update docs * CI windows * if runner.os windows * add kurang if * revmove debug and verbose * return to full workflow * revert dispatch * update docs conflict * fix wrong variable * add trim and mkdir * trim checksum Co-authored-by: Mochamad Noor Syamsu <[email protected]>
- Loading branch information
Showing
4 changed files
with
157 additions
and
0 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,13 @@ | ||
$ErrorActionPreference = 'Stop'; | ||
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" | ||
$url64 = '_RELEASE_URL_' | ||
|
||
$packageArgs = @{ | ||
packageName = 'monika' | ||
unzipLocation = $toolsDir | ||
url64bit = $url64 | ||
checksum64 = '_CHECKSUM_CONTENT_' | ||
checksumType64= 'sha256' | ||
} | ||
|
||
Install-ChocolateyZipPackage @packageArgs |
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,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
<metadata> | ||
<id>monika</id> | ||
<version>_VERSION_</version> | ||
<title>monika (Install)</title> | ||
<authors>raosan</authors> | ||
<projectUrl>https://monika.hyperjump.tech/</projectUrl> | ||
<iconUrl>https://cdn.statically.io/gh/hyperjumptech/monika/main/docs/public/monika.svg</iconUrl> | ||
<tags>monika monitoring</tags> | ||
<description>Monika - Free and Open Source Synthetic Monitoring Tool</description> | ||
</metadata> | ||
<files> | ||
<file src="tools\**" target="tools" /> | ||
</files> | ||
</package> |
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