Skip to content

Delete .github/workflows/ci-cd-test.yml #4

Delete .github/workflows/ci-cd-test.yml

Delete .github/workflows/ci-cd-test.yml #4

Workflow file for this run

name: Build & Push - Main
on:
push:
branches: [main]
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build & push main image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/python-sample:main