Skip to content

Commit

Permalink
Fixed Appveyor to correct auth token
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Sep 26, 2024
1 parent 8ddc9de commit 9dc9c17
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Mirivoice/Assets/Lang/strings-en-US.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


<system:String x:Key="updater.title">Update Checker</system:String>
<system:String x:Key="updater.description">Universal TTS Platform</system:String>
<system:String x:Key="updater.description">Open-Free TTS Platform For All</system:String>
<system:String x:Key="updater.status.available">Mirivoice v{0} is available!</system:String>
<system:String x:Key="updater.status.checking">Checking for Updates...</system:String>
<system:String x:Key="updater.status.notavailable">(Latest)</system:String>
Expand Down
Binary file modified Mirivoice/Assets/logo-updater.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 5 additions & 29 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ branches:
only:
- stable
- main
skip_tags: true
image:
- Visual Studio 2022
- macOS
Expand All @@ -23,52 +22,29 @@ dotnet_csproj:
nuget:
project_feed: true
before_build:
- ps: >-
git config --global credential.helper store
Set-Content -Path "$HOME\.git-credentials" -Value "https://$($env:access_token):[email protected]`n" -NoNewline
git config --global user.email "[email protected]"
git config --global user.name "appveyor"
nuget restore
- cmd: nuget restore
build:
project: Mirivoice.Desktop/Mirivoice.Desktop.csproj
parallel: true
verbosity: minimal
artifacts:
- path: bin\win-x86
name: MiriVoice-win-x86
- path: bin\win-x64
name: MiriVoice-win-x64
- path: MiriVoice-win-x64.exe
- path: MiriVoice-osx-x64.dmg
- path: MiriVoice-linux-x64.tar.gz
- path: appcast.win-x86.xml
- path: appcast.win-x64.xml
- path: appcast.win-x64-installer.xml
- path: appcast.linux-x64.xml
- path: appcast.osx-x64.xml
- path: changelog.txt
deploy:
- provider: GitHub
tag: build/$(APPVEYOR_BUILD_VERSION)
release: $(APPVEYOR_BUILD_VERSION) Beta
release: MiriVoice-v$(APPVEYOR_BUILD_VERSION) Beta
description: $(APPVEYOR_BUILD_VERSION) Beta ($(APPVEYOR_REPO_COMMIT_TIMESTAMP))
auth_token:
secure: JOj3dHhQpaawLqJwzShSxgzplsNMnwE9Cpx5OcGUOP2SYJpN84kooY1WNnd3VU1D
secure: EZGpxMjy4Z14QdM0UqgRTRn+GRbehi7bp6TtZVjH04PqNqMljX9d1QU29YDHOhld
repository: EX3exp/MiriVoice
prerelease: true
force_update: true
on:
branch: main
- provider: GitHub
tag: build/$(APPVEYOR_BUILD_VERSION)
release: $(APPVEYOR_BUILD_VERSION)
release: MiriVoice-v$(APPVEYOR_BUILD_VERSION)
description: $(APPVEYOR_BUILD_VERSION) ($(APPVEYOR_REPO_COMMIT_TIMESTAMP))
auth_token:
secure: JOj3dHhQpaawLqJwzShSxgzplsNMnwE9Cpx5OcGUOP2SYJpN84kooY1WNnd3VU1D
secure: EZGpxMjy4Z14QdM0UqgRTRn+GRbehi7bp6TtZVjH04PqNqMljX9d1QU29YDHOhld
repository: EX3exp/MiriVoice
prerelease: false
force_update: true
Expand Down

0 comments on commit 9dc9c17

Please sign in to comment.