Skip to content

Docker CI

Docker CI #119

Workflow file for this run

name: Docker CI
on:
push:
branches:
- main
- develop
# Build then a new version is tagged
tags:
- '*.*.*'
pull_request:
branches:
- main
- develop
schedule:
# Build every night at 1am
- cron: '0 1 * * *'
jobs:
build:
uses: samply/github-workflows/.github/workflows/docker-ci.yml@main

Check failure on line 20 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Docker CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 20, Col: 11): Input push-to is required, but not provided while calling.
with:
# The Docker Hub Repository you want eventually push to, e.g samply/share-client
image-name: "samply/teiler-orchestrator"
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}