diff --git a/.github/workflows/publish-docker-images.yml b/.github/workflows/publish-docker-images.yml
index 6f5bc4130..a97f950aa 100644
--- a/.github/workflows/publish-docker-images.yml
+++ b/.github/workflows/publish-docker-images.yml
@@ -70,6 +70,14 @@ jobs:
push: true
tags: ${{ env.REGISTRY }}/${{ env.REPO_LOWER }}-smtp:latest,${{ env.REGISTRY }}/${{ env.REPO_LOWER }}-smtp:${{ github.ref_name }}
+ - name: Build and push TaskRunner image
+ uses: docker/build-push-action@v5
+ with:
+ context: .
+ file: src/Services/AliasVault.TaskRunner/Dockerfile
+ push: true
+ tags: ${{ env.REGISTRY }}/${{ env.REPO_LOWER }}-task-runner:latest,${{ env.REGISTRY }}/${{ env.REPO_LOWER }}-task-runner:${{ github.ref_name }}
+
- name: Build and push Reverse Proxy image
uses: docker/build-push-action@v5
with:
diff --git a/src/Shared/AliasVault.Shared.Core/AppInfo.cs b/src/Shared/AliasVault.Shared.Core/AppInfo.cs
index 7b2c5acc0..8b4a54e35 100644
--- a/src/Shared/AliasVault.Shared.Core/AppInfo.cs
+++ b/src/Shared/AliasVault.Shared.Core/AppInfo.cs
@@ -30,7 +30,7 @@ public static class AppInfo
///
/// Gets the patch version number.
///
- public const int VersionPatch = 0;
+ public const int VersionPatch = 1;
///
/// Gets the build number, typically used in CI/CD pipelines.