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: 2 months ago
JSON representation
📦 Publishes a Docker image to a Docker registry
- Host: GitHub
- URL: https://github.com/actalog/dockerfile-cd
- Owner: actalog
- License: unlicense
- Created: 2023-12-30T19:51:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-04T14:55:18.000Z (over 1 year ago)
- Last Synced: 2026-01-27T05:16:56.454Z (5 months ago)
- Topics: actions, cd, delivery, docker, github, registry
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @actalog/dockerfile-cd
[](https://github.com/actalog/dockerfile-cd/actions/workflows/cd.yml)
```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 }}
```