Open-source alternative Instagram client on Android. More maintainers needed!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
721 B

  1. name: Github debug build
  2. on: workflow_dispatch
  3. # push:
  4. # branches: [ master ]
  5. # pull_request:
  6. # branches: [ master ]
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - name: Checkout
  12. uses: actions/checkout@v2
  13. - name: set up JDK 1.8
  14. uses: actions/setup-java@v1
  15. with:
  16. java-version: 1.8
  17. - name: Grant execute permission for gradlew
  18. run: chmod +x gradlew
  19. - name: Build Github debug apk
  20. run: ./gradlew assembleGithubDebug --stacktrace
  21. # Create artifact
  22. - name: Create apk artifact
  23. uses: actions/upload-artifact@v1
  24. with:
  25. name: app
  26. path: app/build/outputs/apk/github/debug/app-github-debug.apk