From d0686121eabd82e9e356391c8e969c1ef7aaceac Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Fri, 12 Apr 2024 20:11:24 -0500 Subject: [PATCH] chore: fix tag version format --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f088735..6cf6c89 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -32,7 +32,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Create version tag id: version - run: echo "version=$(date +%Y%m%d%H%M%S)" >> $GITHUB_OUTPUT + run: echo "version=$(date +%Y.%m.%d.%H%M%S)" >> $GITHUB_OUTPUT - name: Build and push server image working-directory: src/Blog run: |