Possible fix for the windows release, updated packages

This commit is contained in:
Kwoth
2022-05-14 04:26:50 +02:00
parent cb865d5012
commit fa259384f1
3 changed files with 85 additions and 79 deletions

View File

@@ -65,7 +65,7 @@ test:
publish-windows: publish-windows:
stage: publish-windows stage: publish-windows
rules: rules:
- if: '$CI_COMMIT_TAG' - if: "$CI_COMMIT_TAG"
image: scottyhardy/docker-wine image: scottyhardy/docker-wine
before_script: before_script:
- choco install dotnet-6.0-runtime -y - choco install dotnet-6.0-runtime -y
@@ -76,7 +76,7 @@ publish-windows:
- "$INSTALLER_OUTPUT_DIR/$INSTALLER_FILE_NAME" - "$INSTALLER_OUTPUT_DIR/$INSTALLER_FILE_NAME"
script: script:
- dotnet clean - dotnet clean
- dotnet restore - dotnet restore -f --no-cache
- dotnet publish -c Release --runtime win7-x64 /p:Version=$CI_COMMIT_TAG src/NadekoBot - dotnet publish -c Release --runtime win7-x64 /p:Version=$CI_COMMIT_TAG src/NadekoBot
- $env:NADEKOBOT_INSTALL_VERSION = $CI_COMMIT_TAG - $env:NADEKOBOT_INSTALL_VERSION = $CI_COMMIT_TAG
- iscc.exe "/O+" ".\exe_builder.iss" - iscc.exe "/O+" ".\exe_builder.iss"
@@ -86,7 +86,7 @@ publish-windows:
upload-windows-updater-release: upload-windows-updater-release:
stage: upload-windows-updater-release stage: upload-windows-updater-release
rules: rules:
- if: '$CI_COMMIT_TAG' - if: "$CI_COMMIT_TAG"
image: image:
name: amazon/aws-cli name: amazon/aws-cli
entrypoint: [""] entrypoint: [""]

View File

@@ -5,6 +5,12 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.
## Unreleased ## Unreleased
## [4.1.6] - 14.05.2022
### Fixed
- Fixed windows release and updated packages
## [4.1.5] - 11.05.2022 ## [4.1.5] - 11.05.2022
### Changed ### Changed

View File

@@ -7,7 +7,7 @@ namespace NadekoBot.Services;
public sealed class StatsService : IStatsService, IReadyExecutor, INService public sealed class StatsService : IStatsService, IReadyExecutor, INService
{ {
public const string BOT_VERSION = "4.1.5"; public const string BOT_VERSION = "4.1.6";
public string Author public string Author
=> "Kwoth#2452"; => "Kwoth#2452";