Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/actalog/dockerfile-cd
- Owner: actalog
- License: unlicense
- Created: 2023-12-30T19:51:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-03T14:02:00.000Z (about 2 months ago)
- Last Synced: 2024-12-06T14:07:18.001Z (about 2 months ago)
- Topics: actions, cd, delivery, docker, github, registry
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dockerfile CD
```yml
name: CDon:
workflow_run:
workflows: ['CI']
types:
- completed
branches:
- mainjobs:
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 }}
```