Skip to content

Commit

Permalink
feat: [ANDROAPP-6165] revert to set output command
Browse files Browse the repository at this point in the history
  • Loading branch information
xavimolloy committed May 22, 2024
1 parent 01d7f22 commit 18c4933
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 18c4933

Please sign in to comment.