Skip to content

CI to Docker Hub

CI to Docker Hub #35

Workflow file for this run

name: CI to Docker Hub
# Controls when the workflow will run
on:
# Triggers the workflow on push request events but only for tags vX.X.X
push:
tags:
- "v*.*.*"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow call reusable workflow docker-build
build:
uses: nextail/docker-ubuntu-tini/.github/workflows/docker-build.yml@master
with:
DOCKER_REPOSITORY_NAME: nextail
DOCKER_IMAGE_NAME: ubuntu-tini-user
DOCKER_IMAGE_TAG: 20.04
secrets: inherit