From 303a289d3a78a72f18e21afe598c2b979a7a7069 Mon Sep 17 00:00:00 2001 From: funbiscuit Date: Fri, 24 May 2024 15:13:01 +0300 Subject: [PATCH] fix --- .github/workflows/ci.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2eac190..648dc5d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,14 +6,13 @@ jobs: build-and-push: runs-on: ubuntu-latest steps: - - name: Set the value - id: step_one - run: | - echo "APP_VERSION=$(date '+%Y-%m-%d')-$(git rev-parse HEAD | cut -c -6)" >> "$GITHUB_ENV" - - name: Checkout uses: actions/checkout@v3 + - name: Evaluate app version + run: | + echo "APP_VERSION=$(date '+%Y-%m-%d')-$(git rev-parse HEAD | cut -c -6)" >> "$GITHUB_ENV" + - name: Setup Java uses: actions/setup-java@v3 with: