Skip to content

Initial commit for test branch #1

Initial commit for test branch

Initial commit for test branch #1

Workflow file for this run

name: Build & Push - Test
on:
push:
branches: [test]
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 test image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/python-sample:test