feat: prepared tool code #1
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 Build Image & Push (CICDv2) | |
permissions: write-all | |
'on': | |
push: | |
branches: | |
- main | |
- feat/* | |
- feature/* | |
- fix/* | |
- bugfix/* | |
pull_request: | |
branches: | |
- main | |
env: | |
IMAGE_NAME: 'pygitver' | |
REGISTRY_NAME: pygitver | |
jobs: | |
unittests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Unit Tests | |
shell: bash | |
run: | | |
set -x | |
pip install -U tox | |
pip install tox | |
tox | |
build: | |
runs-on: ubuntu-latest | |
needs: unittests | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Docker Build | |
shell: bash | |
run: | | |
set -x | |
docker build -t ${{ env.IMAGE_NAME }} . | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ env.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Docker Push | |
shell: bash | |
run: | | |
set -x | |
echo "TODO" |