Delete build-docker-dev-branch.yml

This commit is contained in:
Vivek Teega 2023-01-06 03:10:02 +05:30 committed by GitHub
parent 52767ae937
commit b89c0a628f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +0,0 @@
name: Docker Image CI
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: [self-hosted, linux]
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: sudo docker build -t ranchimallfze/flosight:dev .
- name: Login to Dockerhub
run: sudo docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} -p ${{ secrets.DOCKER_HUB_PASS }}
- name: Push to Dockerhub
run: sudo docker push ranchimallfze/flosight:dev