From fbe714e637981d5d5a55376377f45a5ab116b983 Mon Sep 17 00:00:00 2001 From: Janez T Date: Sat, 28 Feb 2026 14:40:04 +0100 Subject: [PATCH] docs: add artifact download steps ref: --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index c729925..4c37097 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,25 @@ flutter build apk --release # Android flutter build ios --release # iOS ``` +## GitHub Actions artifacts + +Every push runs the `Build And Upload Release Assets` workflow and uploads build artifacts for: + +- Android (`.apk`) +- Linux (`.tar.gz`) +- macOS (`.dmg`) +- Windows (`.zip`) + +How to download them: + +1. Open the repository on GitHub. +2. Go to **Actions**. +3. Open a workflow run named `Build And Upload Release Assets`. +4. In the run summary, scroll to **Artifacts**. +5. Download the artifact you need (`release-android`, `release-linux`, `release-macos`, `release-windows`). + +For published releases, the same files are also attached to the GitHub Release page. + ### iOS signing ```bash