Skip to content

Docker Image CI

Docker Image CI #293

Workflow file for this run

name: Docker Image CI
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 4 2-30/2 * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)