Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 891 Bytes

File metadata and controls

29 lines (26 loc) · 891 Bytes

Code-To-Release

How to obtain the APK if you don't have Flutter in your local system

If you get any error in running the app, let the volunteers know and do not proceed further.

  1. Create your Github account
  2. Fork the repository to your own account.
  3. Go to Actions Tab on your GitHub repository, and enable it.
  4. Clone the repository from your account to your local system.
    git clone <URL-to-your-repository>

Example: If your username is ABC and the repository is called xyz, then use this command:

    git clone https://github.com/ABC/xyz
  1. Copy-paste the code to the newly cloned folder.
  2. Go the pubspec.yaml and change the environment value as such:
environment:
  sdk: ">=3.8.0"
  1. Run the below commands:
    git add .
    git commit -m "Building APK via GitHub Actions"
    git push