Merge pull request #126 from swciitg/Hacktoberfest_2023 #74
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android build & release | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
flutter_test: | |
name: Run flutter test and analyze | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# - uses: actions/setup-java@v1 | |
# with: | |
# java-version: "12.x" | |
- uses: subosito/flutter-action@v2.4.0 | |
with: | |
channel: "stable" | |
- run: flutter --version | |
- run: flutter pub get | |
- run: flutter pub upgrade | |
- run: flutter build apk --debug --no-tree-shake-icons --debug --dart-define SERVER-URL="https://swc.iitg.ac.in/test/onestop/api/v3/" --dart-define IRBS-SERVER-URL="https://swc.iitg.ac.in/test/irbs" --dart-define SECURITY-KEY=${{ secrets.SECURITY_KEY }} --dart-define GMAP_KEY=${{ secrets.GMAP_KEY }} --dart-define GITHUB_ISSUE_TOKEN=${{ secrets.GIT_TOKEN }} | |
- name: Create Release | |
uses: ncipollo/release-action@v1.10.0 | |
with: | |
artifacts: "build/app/outputs/flutter-apk/app-debug.apk" | |
tag: v1.0.${{ github.run_number }} | |
token: ${{ secrets.GIT_TOKEN }} | |