This commit is contained in:
lolouk44 2020-11-26 09:47:10 +00:00
parent 4bf56d8085
commit 9b6519f299
4 changed files with 14 additions and 7 deletions

View file

@ -2,7 +2,7 @@ name: Publish Docker image
on: on:
release: release:
types: [published] types: [published]
jobs: jobs:
push_to_registry: push_to_registry:
name: Push Docker image to Docker Hub name: Push Docker image to Docker Hub
@ -14,7 +14,7 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
id: buildx id: buildx
uses: docker/setup-buildx-action@v1 uses: docker/setup-buildx-action@v1
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
@ -28,5 +28,7 @@ jobs:
run: | run: |
docker buildx build --no-cache --push \ docker buildx build --no-cache --push \
--tag lolouk44/xiaomi-mi-scale:${{ github.event.release.tag_name }} \ --tag lolouk44/xiaomi-mi-scale:${{ github.event.release.tag_name }} \
--tag lolouk44/xiaomi-mi-scale:latest \ --platform linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8 .
--platform linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8 .
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

View file

@ -1,3 +1,7 @@
## [0.1.13] - 2020-11-26
### Changed
- Fixed MQTT Discovery Message
## [0.1.12] - 2020-11-23 ## [0.1.12] - 2020-11-23
### Changed ### Changed
- Updated workflow to automatically build docker images on new releases with version and latest tags - Updated workflow to automatically build docker images on new releases with version and latest tags

View file

@ -3,7 +3,7 @@ FROM python:3.8-slim
WORKDIR /opt/miscale WORKDIR /opt/miscale
COPY src /opt/miscale COPY src /opt/miscale
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install no-install-recommends -y \
bluez \ bluez \
python-pip \ python-pip \
libglib2.0-dev && \ libglib2.0-dev && \
@ -14,5 +14,6 @@ RUN pip install -r requirements.txt
# Copy in docker scripts to root of container... # Copy in docker scripts to root of container...
COPY dockerscripts/ / COPY dockerscripts/ /
RUN chmod +x /entrypoint.sh && chmod +x /cmd.sh
ENTRYPOINT ["/entrypoint.sh"] ENTRYPOINT ["/entrypoint.sh"]
CMD ["/cmd.sh"] CMD ["/cmd.sh"]

View file

@ -193,8 +193,8 @@ OLD_MEASURE = ''
def discovery(): def discovery():
for MQTTUser in (USER1_NAME,USER2_NAME,USER3_NAME): for MQTTUser in (USER1_NAME,USER2_NAME,USER3_NAME):
message = '{"name": "' + MQTTUser + ' Weight",' message = '{"name": "' + MQTTUser + ' Weight",'
message+= '"state_topic": "' + MQTT_PREFIX + '/' + MQTTUser + '/weight","value_template": "{{ value_json.weight }}"' message+= '"state_topic": "' + MQTT_PREFIX + '/' + MQTTUser + '/weight","value_template": "{{ value_json['weight'] }}",'
message+= '"json_attributes_topic": "miscale/' + MQTTUser + '/weight","icon": "mdi:scale-bathroom"}' message+= '"json_attributes_topic": "' + MQTT_PREFIX + '/' + MQTTUser + '/weight","icon": "mdi:scale-bathroom"}'
publish.single( publish.single(
MQTT_DISCOVERY_PREFIX + '/sensor/' + MQTT_PREFIX + '/' + MQTTUser + '/config', MQTT_DISCOVERY_PREFIX + '/sensor/' + MQTT_PREFIX + '/' + MQTTUser + '/config',
message, message,