Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Nov 2, 2024
1 parent 5007a8d commit 868e2a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ jobs:
- name: assemble debug artifact
run: ./gradlew assembleDebug

- name: assemble release artifact
run: ./gradlew assembleRelease
# - name: assemble release artifact
# run: ./gradlew assembleRelease

- name: upload artifacts to outputs
uses: actions/upload-artifact@v4
with:
path: |
app/build/outputs/apk
android-template/app/build/outputs/apk
- name: expose version name
id: version_name
Expand All @@ -78,7 +78,7 @@ jobs:
- name: expose apk path
run: |
echo "APK_PATH=$(find app/build/outputs/apk -name '*.apk' -type f -exec stat -c '%Y %n' {} + | sort -n | tail -1 | cut -d' ' -f2)" >> $GITHUB_ENV
echo "APK_PATH=$(find android-template/app/build/outputs/apk/**/**/*.apk)" >> $GITHUB_ENV
- name: expose short commit sha
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
Expand Down

0 comments on commit 868e2a7

Please sign in to comment.