From fb5d724e8ee25bfc50c1cb805dd73e869b113553 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Mon, 15 Aug 2022 07:34:08 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Updated=20Tag=20Name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-apk.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-apk.yml b/.github/workflows/build-apk.yml index aab694e..67e50ad 100644 --- a/.github/workflows/build-apk.yml +++ b/.github/workflows/build-apk.yml @@ -37,9 +37,14 @@ jobs: run: | docker-compose up + - name: Get Date + id: get-date + run: | + echo ::set-output name=date::$(TZ='Asia/Kolkata' date +"%Y.%m.%d-%H.%M.%S") + - name: Upload Build Artifact uses: ncipollo/release-action@v1.10.0 with: artifacts: "apks/*-output.apk" token: ${{ secrets.GH_TOKEN }} - tag: Latest-${{ github.run_id }}-${{ github.run_attempt }} + tag: Build-${{ steps.get-date.outputs.date }}