Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 51e80c2f52 | |||
| 567ef9637e | |||
| e8818c9d23 | |||
| 2710813c51 | |||
| fb69e6d50a | |||
| 135d9f63a1 | |||
| 695cd7eb4d |
@@ -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
|
||||||
|
ADD dist /tmp/dist
|
||||||
|
|
||||||
# Install python packages
|
# Install python packages
|
||||||
RUN python3 -m pip install --upgrade pip setuptools wheel
|
RUN python3 -m pip uninstall -y 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.2.0'
|
__version__ = '0.2.2'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
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
|
||||||
@@ -9,7 +9,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.1
|
pkginfo==1.7.1
|
||||||
@@ -17,7 +17,7 @@ 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
|
||||||
|
|||||||
Reference in New Issue
Block a user