Skip to content

Commit

Permalink
fix: move to release
Browse files Browse the repository at this point in the history
  • Loading branch information
sheenhx authored Sep 8, 2024
1 parent 91fa47c commit bb875f0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,17 @@ jobs:
name: release-apk
# Try running the build locally with the build command to be sure of this path
path: build/app/outputs/flutter-apk/app-product-release.apk

- name: Move APK to release directory
run: |
mkdir -p release # Create the release directory if it doesn't exist
mv build/app/outputs/flutter-apk/app-product-release.apk release/app-release.apk
- uses: actions/checkout@v3
- uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/flutter-apk/app-product-release.apk"
artifacts: "`app-product-release.apk"
token: ${{ secrets.DART_TOKEN }}
tag: ${{ steps.generate.outputs.build-number }}
prerelease: true
Expand Down

0 comments on commit bb875f0

Please sign in to comment.