From e403023d50389d193dc55f3f1330ce64cacc3136 Mon Sep 17 00:00:00 2001 From: scossu Date: Wed, 14 Aug 2024 17:26:41 -0400 Subject: [PATCH] Mirror config updates in push-app-image action. --- .github/workflows/push-app-image.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push-app-image.yml b/.github/workflows/push-app-image.yml index 7df9977..55e85f1 100644 --- a/.github/workflows/push-app-image.yml +++ b/.github/workflows/push-app-image.yml @@ -27,7 +27,8 @@ jobs: - name: update version info run: | - git describe --tags >| VERSION + git fetch --tags + git describe --tags --always >| VERSION git rev-parse HEAD >> VERSION - name: Build the Docker image