Skip to content

forgot to add git install #9

forgot to add git install

forgot to add git install #9

Workflow file for this run

name: Build and Push
on:
push:
branches: [main]
paths:
- 'Dockerfile'
- 'src/**' # adjust to your source dirs
pull_request:
branches: [main]
paths:
- 'Dockerfile'
- 'src/**'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to Docker Hub
uses: docker/login-action@v4
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v7
with:
context: .
push: true
tags: chbeltz/compocyte:latest