fix classmethods when it should be staticmethod #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
push_to_registry: | |
name: push docker image to hub | |
runs-on: ubuntu-latest | |
steps: | |
- name: check repository | |
uses: actions/checkout@v4 | |
- name: login to docker registry | |
uses: docker/login-action@v3 | |
with: | |
username: ${{secrets.DOCKERHUB_USERNAME}} | |
password: ${{secrets.DOCKERHUB_TOKEN}} | |
- name: build and push docker image to registry | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: thorfusion/solderpy:dev |