feat: 명단은 수동으로 가져오도록 수정 #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Broadcaster | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'streams/broadcast/**' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'streams/broadcast/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v4 | |
with: | |
context: streams/broadcast | |
file: streams/broadcast/Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKER_USERNAME }}/kafka-streams-broadcast:latest |