mirror of
https://github.com/ArtemSBulgakov/buildozer-action.git
synced 2024-08-16 10:09:52 +02:00
Fix indentation in example
This commit is contained in:
parent
58679ab44f
commit
895c6ec597
1 changed files with 18 additions and 18 deletions
36
README.md
36
README.md
|
@ -17,27 +17,27 @@ name: Build
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Build job. Builds app for Android with Buildozer
|
# Build job. Builds app for Android with Buildozer
|
||||||
build-android:
|
build-android:
|
||||||
name: Build for Android
|
name: Build for Android
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Build with Buildozer
|
- name: Build with Buildozer
|
||||||
uses: ArtemSBulgakov/buildozer-action@v1
|
uses: ArtemSBulgakov/buildozer-action@v1
|
||||||
id: buildozer
|
id: buildozer
|
||||||
with:
|
with:
|
||||||
workdir: test_app
|
workdir: test_app
|
||||||
buildozer_version: stable
|
buildozer_version: stable
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: package
|
name: package
|
||||||
path: ${{ steps.buildozer.outputs.filename }}
|
path: ${{ steps.buildozer.outputs.filename }}
|
||||||
```
|
```
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
|
Loading…
Reference in a new issue