Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e8818c9d23 | |||
| 2710813c51 | |||
| fb69e6d50a | |||
| 135d9f63a1 | |||
| 695cd7eb4d | |||
| 61ca025afd | |||
| 2bd1630621 | |||
| 34517d01b7 | |||
| 0a4d66e13a | |||
| fe0a3af05f |
@@ -55,5 +55,6 @@ jobs:
|
|||||||
- name: Build and Push to Docker Hub
|
- name: Build and Push to Docker Hub
|
||||||
uses: docker/build-push-action@v2.6.1
|
uses: docker/build-push-action@v2.6.1
|
||||||
with:
|
with:
|
||||||
|
context: .
|
||||||
push: true
|
push: true
|
||||||
tags: qmkfm/qmk_cli:latest
|
tags: qmkfm/qmk_cli:latest
|
||||||
|
|||||||
+7
-2
@@ -1,8 +1,13 @@
|
|||||||
FROM qmkfm/base_container
|
FROM qmkfm/base_container
|
||||||
|
|
||||||
|
# Copy package in
|
||||||
|
COPY dist /tmp
|
||||||
|
|
||||||
# Install python packages
|
# Install python packages
|
||||||
RUN python3 -m pip install --upgrade pip setuptools wheel
|
RUN python3 -m pip uninstall qmk || true
|
||||||
RUN python3 -m pip install --upgrade nose2 qmk
|
RUN python3 -m pip install --upgrade pip setuptools wheel nose2 && \
|
||||||
|
python3 -m pip install /tmp/dist/qmk-*.whl && \
|
||||||
|
rm -rf /tmp/dist
|
||||||
|
|
||||||
# Set the default location for qmk_firmware
|
# Set the default location for qmk_firmware
|
||||||
ENV QMK_HOME /qmk_firmware
|
ENV QMK_HOME /qmk_firmware
|
||||||
|
|||||||
+1
-1
@@ -1,3 +1,3 @@
|
|||||||
"""A program to help you work with qmk_firmware."""
|
"""A program to help you work with qmk_firmware."""
|
||||||
|
|
||||||
__version__ = '0.1.1'
|
__version__ = '0.2.1'
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
bleach==3.3.0
|
bleach==3.3.1
|
||||||
bump2version==1.0.1
|
bump2version==1.0.1
|
||||||
bumpversion==0.6.0
|
bumpversion==0.6.0
|
||||||
certifi==2021.5.30
|
certifi==2021.5.30
|
||||||
cffi==1.14.5
|
cffi==1.14.6
|
||||||
chardet==4.0.0
|
chardet==4.0.0
|
||||||
colorama==0.4.4
|
colorama==0.4.4
|
||||||
cryptography==3.4.7
|
cryptography==3.4.7
|
||||||
docutils==0.17.1
|
docutils==0.17.1
|
||||||
idna==2.10
|
idna==2.10
|
||||||
importlib-metadata==4.6.1
|
importlib-metadata==4.6.1
|
||||||
jeepney==0.6.0
|
jeepney==0.7.0
|
||||||
keyring==23.0.1
|
keyring==23.0.1
|
||||||
packaging==21.0
|
packaging==21.0
|
||||||
pkginfo==1.7.0
|
pkginfo==1.7.1
|
||||||
pycparser==2.20
|
pycparser==2.20
|
||||||
Pygments==2.9.0
|
Pygments==2.9.0
|
||||||
pyparsing==2.4.7
|
pyparsing==2.4.7
|
||||||
readme-renderer==29.0
|
readme-renderer==29.0
|
||||||
requests==2.25.1
|
requests==2.26.0
|
||||||
requests-toolbelt==0.9.1
|
requests-toolbelt==0.9.1
|
||||||
rfc3986==1.5.0
|
rfc3986==1.5.0
|
||||||
SecretStorage==3.3.1
|
SecretStorage==3.3.1
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.1.1
|
current_version = 0.2.1
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
tag_name = {new_version}
|
tag_name = {new_version}
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ if __name__ == "__main__":
|
|||||||
"attrs==21.2.0",
|
"attrs==21.2.0",
|
||||||
"colorama==0.4.4",
|
"colorama==0.4.4",
|
||||||
"coverage==5.5",
|
"coverage==5.5",
|
||||||
"dotty-dict==1.3.0",
|
"qmk-dotty-dict==1.3.0.post1",
|
||||||
"flake8==3.9.2",
|
"flake8==3.9.2",
|
||||||
"halo==0.0.31",
|
"halo==0.0.31",
|
||||||
"hid==1.0.4",
|
"hid==1.0.4",
|
||||||
@@ -59,7 +59,7 @@ if __name__ == "__main__":
|
|||||||
"pyflakes==2.3.1",
|
"pyflakes==2.3.1",
|
||||||
"Pygments==2.9.0",
|
"Pygments==2.9.0",
|
||||||
"pyrsistent==0.18.0",
|
"pyrsistent==0.18.0",
|
||||||
"pyusb==1.2.0",
|
"pyusb==1.2.1",
|
||||||
"setuptools>=45",
|
"setuptools>=45",
|
||||||
"six==1.16.0",
|
"six==1.16.0",
|
||||||
"spinners==0.0.24",
|
"spinners==0.0.24",
|
||||||
|
|||||||
Reference in New Issue
Block a user