Skip to content

fix: workers sending debug notifications #123

fix: workers sending debug notifications

fix: workers sending debug notifications #123

Workflow file for this run

on: push
name: Test, Build and Release apk
jobs:
build:
name: Build APK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17.x'
distribution: 'temurin'
- uses: subosito/flutter-action@v2
with:
#flutter-version: '1.7.8+hotfix.4'
channel: stable
- run: flutter pub get
#- run: flutter test
- run: flutter build apk --debug --flavor debugVariant ##--split-per-abi
- name: Upload APK
uses: actions/upload-artifact@v4
with:
# Name of the artifact to upload.
# Optional. Default is 'artifact'
name: APK
#path: "build/app/outputs/apk/debug/*.apk"
path: "build/app/outputs/flutter-apk/*.apk"
#- name: Push APK to Releases
# uses: ncipollo/release-action@v1
# with:
# artifacts: "build/app/outputs/apk/debug/*.apk"
# token: ${{ secrets.GITHUB_TOKEN }}
#token: ${{ secrets.TOKEN }}