Skip to content

Commit

Permalink
Only pushing on docker-image branch (#4)
Browse files Browse the repository at this point in the history
* Fixed tmo_monitor.gateway module installation

* Update README.md

add Windows directions

* use meaningful exit status codes, fixes highvolt-dev#52

* clarify that a clean run will exit with status code 0 as expected

* add project logo

* First commit to log to syslog - not working yet

Moved all the logging from print_and_log to logging, but syslog doesn't
work. Need to debug.

* Made Linux syslog logging work

* Moved away from f-Strings to lower Python version requirement

* Added support for Windows (untested)

* Fixed log message format

* Fixed out-of-scope use of syslog_socket

* Fixed missing leading space

* add missing import

* fixes highvolt-dev#56 breaking change to webapp login after Nokia firmware upgrade to 1.2103.00.0338

* version bump

* add IPv6 ping support, fixes highvolt-dev#43

* use ping6 binary if available for ipv6 ping functionality, fixes highvolt-dev#43

* fix setting IPv6 ping via .env

* conditionally check for lsid cookie to avoid runtime error with nokia 2104 firmware update

* calculate arcaydyan eNB ID using decimal base fixes highvolt-dev#68 caused by firmware update

* safely access 5g band info for arcadyan gateway - fixes highvolt-dev#75

* add support for alternative connectivity checks - fixes highvolt-dev#13 highvolt-dev#78 ; add explicit support for Sagecom gateway

* correct README

* explicitly pass -4 flag to ping command to try ipv4 with ping command except for OS X clients, fixes highvolt-dev#77

* Pushing on docker-image

---------

Co-authored-by: highvolt-dev <highvoltage@gmail.com>
  • Loading branch information
hugoh and highvolt-dev authored May 26, 2023
1 parent 18860a4 commit 50344b1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ jobs:
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
uses: docker/login-action@v1
if: github.ref == 'refs/heads/master'
uses: docker/login-action@v2
if: github.ref == 'refs/heads/docker-image'
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
file: Dockerfile
tags: hugohh/tmo-monitor:latest
push: ${{ github.ref == 'refs/heads/master' }}
push: ${{ github.ref == 'refs/heads/docker-image' }}

0 comments on commit 50344b1

Please sign in to comment.