From de17303085540c0537c5d173b35fa8407fe34adb Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Wed, 4 Dec 2024 18:39:15 +0100 Subject: [PATCH] Publish task runner docker container image (#449) --- .github/workflows/publish-docker-images.yml | 8 ++++++++ src/Shared/AliasVault.Shared.Core/AppInfo.cs | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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.