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:
parent
b6beb15fcc
commit
2ba9621c1a
1 changed files with 12 additions and 1 deletions
13
README.md
13
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
|
||||
|
|
Loading…
Reference in a new issue