Skip to content

Commit

Permalink
Merge pull request #170 from flow-mn:main
Browse files Browse the repository at this point in the history
Trigger android build ??
  • Loading branch information
sadespresso committed Jul 7, 2024
2 parents 31e522e + 1a2b230 commit a9491a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 15 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/deploy-android.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Deploy Android
name: Deploy Beta build for Android
on:
push:
branches:
- "release"
- "beta"
jobs:
build:
runs-on: "ubuntu-latest"
Expand Down Expand Up @@ -36,12 +36,5 @@ jobs:
packageName: mn.flow.flow
releaseFiles: build/app/outputs/bundle/release/app-release.aab
track: beta
- name: Build apk
run: flutter build apk --release --no-tree-shake-icons
- name: Upload artifacts for GitHub
uses: actions/upload-artifact@v4
with:
name: Android APK
path: build/app/outputs/flutter-apk/app-release.apk
- name: Clean up
run: rm -rf ./android/key.properties ./android/flow-upload-keystore.jks
4 changes: 1 addition & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Run tests
on:
pull_request:
push:
branches-ignore:
- "release"

jobs:
test:
runs-on: "ubuntu-latest"
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ As of now, publishing fees have been paid by the maintainer.
NOTE: A quick discussion upfront can highlight any potential issues, streamline
the merge process, and ensure you're on the right track to avoid rework.

TIP: Work on issues with `ready` label
TIP: Look for issues with `ready` label to get contributing immediately

1. Fork the repository
2. Pick an issue. If the fix/feature you're gonna work doesn't have an issue,
please create one first.
3. Let everyone know that you're working on it by commenting "I'm working on it"
4. Create a feature branch. For example, if you're working on [#82](https://github.com/flow-mn/flow/issues/82),
create a branch `fix82` from `main`
create a branch `username/fix82` from `develop`
5. Make changes on the new branch
6. Ensure your code doesn't have any linter warnings, errors
(Your editor will tell you, or you can run `flutter analyze`)
7. Submit a PR to `main` branch
7. Submit a PR to `develop` branch
8. If your feature involves UI changes, add a short video demonstrating the
implement change/feature

Expand Down

0 comments on commit a9491a2

Please sign in to comment.