diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 80ad898909..090747babf 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -19,11 +19,10 @@ jobs: steps: - uses: actions/checkout@v4 - # Set Current Date As Env Variable - - name: Set current date as env variable + # Set Current Date + - name: Set current date id: date - - run: echo "{date}={$(date +'%Y-%m-%d')}" >> $GITHUB_OUTPUT + run: echo "::set-output name=date::$(date +'%Y-%m-%d')" # Set Repository Name As Env Variable - name: Set repository name as env variable @@ -52,5 +51,5 @@ jobs: - name: Upload Android artifacts uses: actions/upload-artifact@v4 with: - name: ${{ env.repository_name }} - Android APK ${{ env.current_date }} - ${{ steps.date.outputs.date }} + name: ${{ env.repository_name }} - Android APK - ${{ steps.date.outputs.date }} path: ${{ env.main_project_module }}/build/outputs/apk/dhis/debug/dhis2-v${{ steps.read-version.outputs.vName }}-dhis-debug.apk