Skip to content

Publish

Publish #3

Workflow file for this run

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