From bf38f35539ec1f75dbc69525a035e5855848b08a Mon Sep 17 00:00:00 2001 From: Ammar Githam Date: Fri, 26 Mar 2021 23:07:56 +0900 Subject: [PATCH] update artifact name --- .github/workflows/github_release_apk.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github_release_apk.yml b/.github/workflows/github_release_apk.yml index 1b1b53a8..6b3d8c8f 100644 --- a/.github/workflows/github_release_apk.yml +++ b/.github/workflows/github_release_apk.yml @@ -37,9 +37,13 @@ jobs: keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} keyPassword: ${{ secrets.KEY_PASSWORD }} + - name: Get current date and time + id: date + run: echo "::set-output name=date::$(date +'%Y%m%d_%H%M%S')" + # Create artifact - name: Create apk artifact uses: actions/upload-artifact@v2 with: - name: app-github-release.apk + name: barinsta-hotfix-${{ steps.date.outputs.date }} path: ${{steps.sign_app.outputs.signedReleaseFile}}