Skip to content

feat: prepared tool code #1

feat: prepared tool code

feat: prepared tool code #1

Workflow file for this run

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"