Skip to content

Commit

Permalink
fix(mobile): add correct path to main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thaidmfinnick committed Aug 4, 2023
1 parent 5125a71 commit db30f6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
# - name: Run test
# run: flutter test --coverage
- name: Build APK
run: flutter build apk --no-shrink --no-tree-shake-icons
run: cd mobile_app && flutter build apk --no-shrink --no-tree-shake-icons
- name: Create a Release APK
if: startsWith(github.ref, 'refs/tags/v')
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*.apk"
artifacts: "mobile_app/build/app/outputs/apk/release/*.apk"
token: ${{ secrets.TOKEN }}

0 comments on commit db30f6a

Please sign in to comment.