https://github.com/luludotdev/docker-build
Build and push Docker images to ghcr.io
https://github.com/luludotdev/docker-build
Last synced: 3 months ago
JSON representation
Build and push Docker images to ghcr.io
- Host: GitHub
- URL: https://github.com/luludotdev/docker-build
- Owner: luludotdev
- Created: 2023-12-10T19:48:40.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-27T20:14:54.000Z (over 1 year ago)
- Last Synced: 2025-02-06T21:31:54.516Z (over 1 year ago)
- Language: Dockerfile
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Build and Push
```yml
name: Docker Build
on: [push, pull_request]
permissions:
contents: read
packages: write
# id-token: write
# ^ required for signing
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Docker Build
id: build
uses: luludotdev/docker-build@master
with:
image-name: hello-world
token: ${{ secrets.GITHUB_TOKEN }}
```