Skip to content

Commit

Permalink
Update android.yml
Browse files Browse the repository at this point in the history
Workflow: Redefine environmental variables
sunilpaulmathew authored Sep 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 3e1f44b commit acd5b45
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -13,6 +13,15 @@ jobs:

steps:
- uses: actions/checkout@v4

# Set Current Date As Env Variable
- name: Set current date as env variable
run: echo "date_today=$(date +'%Y-%m-%d')" >> $GITHUB_ENV

# Set App Name As Env Variable
- name: Set repository name as env variable
run: echo "repository_name=sNotz" >> $GITHUB_ENV

- name: set up JDK 17
uses: actions/setup-java@v4
with:
@@ -40,4 +49,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ${{ env.repository_name }} - ${{ env.date_today }} - APK release generated
path: app/build/outputs/apk/fdroid/release/
path: app/build/outputs/apk/fdroid/release/

0 comments on commit acd5b45

Please sign in to comment.