Skip to content

Test: ci/cd 테스트 #7

Test: ci/cd 테스트

Test: ci/cd 테스트 #7

name: Build and Push Docker image
on:
push:
branches:
- main
paths:
- 'src/**'
jobs:
build-and-push:
runs-on: ubuntu-22.04
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: ./src
file: ./src/Dockerfile
push: true
tags: ehdgns8227/back-api:latest