From 2fc4c5e51419faf18dbd7fb6b200b5c87be3cac2 Mon Sep 17 00:00:00 2001 From: Ashutosh Singh Date: Fri, 10 Sep 2021 15:47:10 +0530 Subject: [PATCH] Fix month in tag name instead of minutes --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e6ebcce..a25c42b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - name: Export Release Timestamp - run: echo "APP_VERSION=v$(date +'%Y.%m.%d.%H.%m.%S')" >> $GITHUB_ENV + run: echo "APP_VERSION=v$(date +'%Y.%m.%d.%H.%M.%S')" >> $GITHUB_ENV # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2