Skip to content

feat(CICD): push docker image to the registry #5

feat(CICD): push docker image to the registry

feat(CICD): push docker image to the registry #5

Workflow file for this run

name: Docker Build & Push
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: panpuchkov
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker Push
shell: bash
run: |
set -x
IMAGE_NAME_WITH_VERSION="${{ env.IMAGE_NAME }}:latest"
docker push "${IMAGE_NAME_WITH_VERSION}"