Skip to content
This repository was archived by the owner on Jan 26, 2022. It is now read-only.

Latest commit

 

History

History
32 lines (24 loc) · 661 Bytes

File metadata and controls

32 lines (24 loc) · 661 Bytes

Contributing guidelines

Installation

Prepare Python environment

eval "$(pyenv init -)" # Put this in your .*hrc file
pyenv install 3.8.0
pyenv local 3.8.0
pip install --upgrade pip
pip install -U pipenv

Install virtualenv & dependencies

pipenv install --dev

Publish new version

export TAG=
docker build -t evaneos/ssh-action:$TAG .
docker tag evaneos/ssh-action:$TAG evaneos/ssh-action:latest
docker push evaneos/ssh-action:$TAG
docker push evaneos/ssh-action:latest