Skip to content

Build Image

Build Image #682

Workflow file for this run

name: Build Image
on:
schedule:
- cron: '0 */6 * * *'
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: ${{ github.repository }}:latest