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

View File

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

View File

@@ -7,7 +7,7 @@ namespace NadekoBot.Services;
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
=> "Kwoth#2452";