Skip to content

YOLOX noetic image build #788

YOLOX noetic image build

YOLOX noetic image build #788

name: YOLOX noetic image build
on:
workflow_dispatch:
schedule:
- cron: '55 15 * * *'
push:
branches:
- main
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-20.04
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Set up Docker Build
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push to Docker Hub
uses: docker/build-push-action@v2
with:
context: ./docker/yolox_noetic
push: true
tags: |
${{ secrets.DOCKER_USERNAME }}/yolox:noetic