Skip to content

Commit 2c46192

Browse files
author
JDMaster
committed
Changes to be committed:
modified: .github/workflows/build.yml renamed: buildozer-config.json -> build-config.json renamed: buildozer-create.py -> build-create.py modified: buildozer.spec
1 parent e0f719d commit 2c46192

File tree

4 files changed

+44
-3
lines changed

4 files changed

+44
-3
lines changed

.github/workflows/build.yml

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
# name: JDMMatrix
2+
# on:
3+
# workflow_dispatch
4+
5+
# jobs:
6+
# build:
7+
# runs-on: ubuntu-latest
8+
9+
# steps:
10+
# - uses: actions/checkout@v2
11+
12+
# # used to cache dependencies with a timeout
13+
# - name: Get Date
14+
# id: get-date
15+
# run: |
16+
# echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")"
17+
# shell: bash
18+
19+
# - name: Cache Buildozer global directory
20+
# uses: actions/cache@v2
21+
# with:
22+
# path: .buildozer_global
23+
# key: buildozer-global-${{ hashFiles('buildozer.spec') }} # Replace with your path
24+
25+
# - uses: actions/cache@v2
26+
# with:
27+
# path: .buildozer
28+
# key: ${{ runner.os }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('buildozer.spec') }}
29+
30+
# - name: Build with Buildozer
31+
# uses: ArtemSBulgakov/buildozer-action@v1
32+
# id: buildozer
33+
# with:
34+
# command: buildozer android debug
35+
# buildozer_version: master
36+
37+
# - name: Upload artifacts
38+
# uses: actions/upload-artifact@v2
39+
# with:
40+
# name: JDMMatrix-0.2.3
41+
# path: ${{ steps.buildozer.outputs.filename }}
142
name: JDMMatrix
243
on:
344
workflow_dispatch
@@ -37,5 +78,5 @@ jobs:
3778
- name: Upload artifacts
3879
uses: actions/upload-artifact@v2
3980
with:
40-
name: JDMMatrix-0.2.3
81+
name: JDMMatrix Package
4182
path: ${{ steps.buildozer.outputs.filename }}
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def saveConfig(self):
140140
"Text" : mode.txtinput.text,
141141
"Activate": mode.activator.activate,
142142
}
143-
with open("buildozer-config.json", "w") as f:
143+
with open("build-config.json", "w") as f:
144144
json.dump(self.config, f, indent=4, separators=(',', ': '))
145145

146146
def buildBuildozer(self):

buildozer.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ orientation = portrait
6060
#
6161

6262
#
63-
# author = © Copyright Info
63+
# author = Copyright Info
6464

6565
# change the major version of python used by the app
6666
osx.python_version = 3

0 commit comments

Comments
 (0)