fix: direct use of response status_body #12
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: "Run build and deploy" | |
on: | |
push: | |
branches: [ 'master' ] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Execute image build and push | |
run: | | |
docker build -t ghcr.io/ccc-mf/kafka-to-bwhc . | |
docker push ghcr.io/ccc-mf/kafka-to-bwhc |