Skip to content

Commit

Permalink
fix the app directory
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrowlands committed Oct 26, 2023
1 parent b096dda commit 0bd6669
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
version_name=${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}
# Get existing version code from build.gradle
version_code=$(grep "versionCode" app/build.gradle | awk '{print $2}' | tr -d '\n')
version_code=$(grep "versionCode" networksurvey/build.gradle | awk '{print $2}' | tr -d '\n')
# Increment existing version code by 1
version_code=$((version_code + 1))
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
# - name: Create a Release in GitHub
# uses: ncipollo/release-action@v1
# with:
# artifacts: "build/app/outputs/apk/release/*.apk,build/app/outputs/bundle/release/app-release.aab"
# artifacts: "networksurvey/build/outputs/apk/cdr/release/*.apk,networksurvey/build/outputs/apk/regular/release/*.apk,networksurvey/build/outputs/bundle/regularRelease/*.aab"
# token: ${{ secrets.GH_TOKEN }}
# tag: ${{ steps.version.outputs.content }}
# commit: ${{ github.sha }}
Expand Down

0 comments on commit 0bd6669

Please sign in to comment.