Skip to content

correcting /me

correcting /me #25

Workflow file for this run

name: CI/CD
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push the Docker image
uses: docker/build-push-action@v5
with:
push: true
tags: |
duratm/pycount-backend:dev
cache-from: type=gha
cache-to: type=gha,mode=max