Skip to content

Commit

Permalink
jreleaser v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jreleaserbot authored and runner committed Nov 1, 2023
1 parent ff9ccc6 commit ec034bd
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-dotnet@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-dotnet@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions jreleaser/jreleaser.nuspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated with JReleaser 1.8.0-SNAPSHOT at 2023-08-31T22:12:22.043287351Z -->
<!-- Generated with JReleaser 1.9.0-SNAPSHOT at 2023-11-01T09:09:29.092189226Z -->
<!-- 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>
<!-- required -->
<id>jreleaser</id>
<version>1.8.0</version>
<version>1.9.0</version>
<authors>Andres Almiray</authors>
<description>JReleaser is a release automation tool. Its goal is to simplify creating releases and
publishing artifacts to multiple package managers while providing customizable options.
Expand All @@ -29,7 +29,7 @@ may be announced in a variety of channels such as Twitter, Zulip, SDKMAN!, and m
<packageSourceUrl>https://github.com/jreleaser/chocolatey-bucket</packageSourceUrl>
<docsUrl>https://jreleaser.org/guide/latest</docsUrl>
<bugTrackerUrl>https://github.com/jreleaser/jreleaser/issues</bugTrackerUrl>
<releaseNotes>https://github.com/jreleaser/jreleaser/releases/tag/v1.8.0</releaseNotes>
<releaseNotes>https://github.com/jreleaser/jreleaser/releases/tag/v1.9.0</releaseNotes>
<iconUrl>https://rawcdn.githack.com/jreleaser/jreleaser/0934fa1fa3f0bd09c0c8c39fbdeb5df2ce507457/src/media/icon_128x128.png</iconUrl>
</metadata>
<files>
Expand Down
8 changes: 4 additions & 4 deletions jreleaser/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Generated with JReleaser 1.8.0-SNAPSHOT at 2023-08-31T22:12:22.043287351Z
# Generated with JReleaser 1.9.0-SNAPSHOT at 2023-11-01T09:09:29.092189226Z
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$app_home = Join-Path $package 'jreleaser-1.8.0'
$app_home = Join-Path $package 'jreleaser-1.9.0'
$app_exe = Join-Path $app_home 'bin/jreleaser.bat'

Install-ChocolateyZipPackage `
-PackageName 'jreleaser' `
-Url 'https://github.com/jreleaser/jreleaser/releases/download/v1.8.0/jreleaser-1.8.0.zip' `
-Checksum '9b9c0c7b4e07cd058593114111a1ddaaa752937308d85216666f64ce1d588d1e' `
-Url 'https://github.com/jreleaser/jreleaser/releases/download/v1.9.0/jreleaser-1.9.0.zip' `
-Checksum 'b4c1eff349d6ac494e40422b6be109c547bc9b353a5d40417b40848925429234' `
-ChecksumType 'sha256' `
-UnzipLocation $package

Expand Down
4 changes: 2 additions & 2 deletions jreleaser/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Generated with JReleaser 1.8.0-SNAPSHOT at 2023-08-31T22:12:22.043287351Z
# Generated with JReleaser 1.9.0-SNAPSHOT at 2023-11-01T09:09:29.092189226Z
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$app_home = Join-Path $package 'jreleaser-1.8.0'
$app_home = Join-Path $package 'jreleaser-1.9.0'
$app_exe = Join-Path $app_home 'bin/jreleaser.bat'

Uninstall-BinFile -Name 'jreleaser' -Path $app_exe

0 comments on commit ec034bd

Please sign in to comment.