Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/actalog/dockerfile-cd

📦 Publishes a Docker image to a Docker registry
https://github.com/actalog/dockerfile-cd

actions cd delivery docker github registry

Last synced: about 2 months ago
JSON representation

📦 Publishes a Docker image to a Docker registry

Awesome Lists containing this project

README

        

# Dockerfile CD

```yml
name: CD

on:
workflow_run:
workflows: ['CI']
types:
- completed
branches:
- main

jobs:
dockerfile-cd:
name: Dockerfile CD
runs-on: ubuntu-latest
steps:
- uses: actalog/check-ci@main
- uses: actions/checkout@v4
- uses: actalog/dockerfile-cd@main
with:
image-name: actalog/some-software
image-version: v1.0.0
registry-username: actalog
registry-token: ${{ secrets.DOCKER_HUB_TOKEN }}
```