Skip to content

hope this will fasten query #43

hope this will fasten query

hope this will fasten query #43

Workflow file for this run

name: Build Backend
on:
push:
branches:
- main
- patch
paths:
- 'Minio-SQL-connector/**'
- '.github/**'
pull_request:
branches:
- main
- patch
paths:
- 'Minio-SQL-connector/**'
- '.github/**'
jobs:
build-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
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@v5
with:
context: .
file: ./minio-sql-connector-dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/minio_sql_connector:latest