Compare commits

...
3 Commits
Author SHA1 Message Date
ckaczor 6ba4854bd8 Fix update check URL
Deploy to Gitea Releases / deploy-to-gitea-releases (push) Successful in 32s
2026-08-18 13:14:46 -04:00
ckaczor 2be5b86b17 Fix a few architecture flags
Deploy to Gitea Releases / deploy-to-gitea-releases (push) Successful in 31s
2026-08-18 13:09:01 -04:00
ckaczor a75a2d8926 Update main with latest code
Deploy to Gitea Releases / deploy-to-gitea-releases (push) Successful in 34s
2026-08-18 13:05:35 -04:00
2 changed files with 4 additions and 5 deletions
+3 -4
View File
@@ -4,7 +4,6 @@ on:
push:
branches:
- main
- develop
workflow_dispatch:
@@ -32,6 +31,6 @@ jobs:
run: |
export PATH="$PATH:/root/.dotnet/tools"
dotnet tool install -g vpk
#vpk [win] download gitea --channel win-x86 --repoUrl https://gitea.kaczorzoo.net/ckaczor/WorkIndicator
vpk [win] pack --channel win-x64 -u WorkIndicator -v ${{ steps.version.outputs.version }} -p publish --packTitle "Work Indicator" --shortcuts StartMenuRoot --framework net10.0-x64-desktop
vpk [win] upload gitea --channel win-x64 --repoUrl https://gitea.kaczorzoo.net/ckaczor/WorkIndicator --publish --releaseName "${{ steps.version.outputs.version }}" --token ${{ secrets.VPK_TOKEN }}
vpk [win] download gitea --channel win-x86 --repoUrl https://gitea.kaczorzoo.net/ckaczor/WorkIndicator
vpk [win] pack --channel win-x86 -u WorkIndicator -v ${{ steps.version.outputs.version }} -p publish --packTitle "Work Indicator" --shortcuts StartMenuRoot --framework net10.0-x86-desktop
vpk [win] upload gitea --channel win-x86 --repoUrl https://gitea.kaczorzoo.net/ckaczor/WorkIndicator --publish --releaseName "${{ steps.version.outputs.version }}" --token ${{ secrets.VPK_TOKEN }}
+1 -1
View File
@@ -11,7 +11,7 @@ internal static class UpdateCheck
{
private static UpdateManager _updateManager;
public static UpdateManager UpdateManager => _updateManager ??= new UpdateManager(new GithubSource("https://github.com/ckaczor/WorkIndicator", null, false));
public static UpdateManager UpdateManager => _updateManager ??= new UpdateManager(new GiteaSource("https://gitea.kaczorzoo.net/ckaczor/WorkIndicator", null, false));
public static string LocalVersion => (UpdateManager.CurrentVersion ?? new SemanticVersion(0, 0, 0)).ToString();