Skip to content

Commit

Permalink
Merge branch 'main' into feature/homescreen-scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
ntissieres authored Apr 12, 2024
2 parents 2dd123d + 9c8bf4e commit 8ee7048
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
name: Build
runs-on: ubuntu-latest

# Write permission to create a release
permissions:
contents: write

steps:
# First step : Checkout the repository on the runner
- name: Checkout
Expand Down Expand Up @@ -49,4 +53,11 @@ jobs:
with:
name: echo-app.apk
path: app/build/outputs/apk/debug/app-debug.apk
if-no-files-found: error
if-no-files-found: error

# Create a release
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: app/build/outputs/apk/debug/app-debug.apk
token: ${{ secrets.GITHUB_TOKEN }}
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Echo

## Installation

Go to [releases](https://github.com/echo-swent/echo/releases) and download the `app-debug.apk` asset from the latest release.

## Authentication

If you have trouble logging in, please use the following test credentials:

- test@example.com
- 123456

> [!NOTE]
> Make sure you are on the login page before entering the test credentials.
## Architecture

![Architecture](architecture.png)

0 comments on commit 8ee7048

Please sign in to comment.