1
0
Fork 0
mirror of https://github.com/ArtemSBulgakov/buildozer-action.git synced 2024-08-16 10:09:52 +02:00

Add commands to create data branch

This commit is contained in:
Artem Bulgakov 2020-07-22 11:46:38 +03:00
parent b6beb15fcc
commit 2ba9621c1a

View file

@ -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