Skip to content

Commit

Permalink
AU: 1 updated - gitlab-runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Apr 24, 2017
1 parent 44f3987 commit ffa07c9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions gitlab-runner/gitlab-runner.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>gitlab-runner</id>
<title>Gitlab Runner</title>
<version>9.0.0</version>
<version>9.1.0</version>
<authors>Gitlab</authors>
<owners>Miodrag Milic</owners>
<summary>Run build jobs and send the results to GitLab</summary>
Expand Down Expand Up @@ -34,7 +34,11 @@

## Package parameters

- `InstallDir` - Installation directory
- `InstallDir` - Installation directory. If the Gitlab Runner is already installed, its current directory will be used. To install to a new directory, uninstall it first.

## Notes

- The script `register_example.ps1` is provided along the executable which can be used to quickly register runner non-interactively. If you want to use it, rename it, because it will be overwritten on updates.
</description>
<projectUrl>https://docs.gitlab.com/runner</projectUrl>
<tags>admin cli foss git cross-platform build gitlab</tags>
Expand Down
8 changes: 4 additions & 4 deletions gitlab-runner/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ $tmp_path = Join-Path (Get-PackageCacheLocation) "gitlab-runner.exe"
$packageArgs = @{
packageName = 'gitlab-runner'
fileFullPath = $tmp_path
url = 'https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v9.0.0/binaries/gitlab-ci-multi-runner-windows-386.exe'
url64Bit = 'https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v9.0.0/binaries/gitlab-ci-multi-runner-windows-amd64.exe'
checksum = '4db91d8cc4ddf5804db2fa18a31602bd9d904e990f2e05b5d1b1d47084e33f4b'
checksum64 = '3f8ea3a121f6366d510f4864ed0ca332a22f1bddafffad633e13353abee3a52a'
url = 'https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v9.1.0/binaries/gitlab-ci-multi-runner-windows-386.exe'
url64Bit = 'https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v9.1.0/binaries/gitlab-ci-multi-runner-windows-amd64.exe'
checksum = '22f3878a22c20ba620a0c18dcb98270c2b01bfab3cf31cda07b6137a78c6b6b9'
checksum64 = 'bee2dbb9ed256765dcd7638f14c371b120eb635b570a842ab1f911e5e4b1552d'
checksumType = 'sha256'
checksumType64 = 'sha256'
}
Expand Down

0 comments on commit ffa07c9

Please sign in to comment.