From 2ba9621c1a137daa580473cf88aab2cde1a6aeb0 Mon Sep 17 00:00:00 2001 From: Artem Bulgakov Date: Wed, 22 Jul 2020 11:46:38 +0300 Subject: [PATCH] Add commands to create data branch --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ff0ece..960020e 100644 --- a/README.md +++ b/README.md @@ -141,10 +141,21 @@ add this to your workflow: run: python master/.ci/move_binary.py "${{ steps.buildozer.outputs.filename }}" master data ``` +Also you need to create `data` branch: +```bash +git checkout --orphan data +# Here you need to create README.md +# ... +git add README.md +git commit -m "Add Readme" +git push origin data +``` + ## Full workflow Builds app and uploads to the `data` branch. Also copy -[.ci/move_binary.py](.ci/move_binary.py) script. +[.ci/move_binary.py](.ci/move_binary.py) script and create `data` branch as +described above. ```yaml name: Build