Skip to content

Build

Build #1

Workflow file for this run

name: Build
on:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: "30 17 * * SUN"
workflow_run:
workflows: ["Test"]
types:
- completed
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile