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

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

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 }}
```