dagger-ghcr-demo
A demo of how to push to a container registry, in this case github ghcr.io,from a github action.
Not intended to be used directly as a dagger module because it's so simple,
more of an example to copy from.
For GitHub Actions yaml and dagger go code to copy, see the README at
https://github.com/lukemarsden/dagger-ghcr-demo
Installation
dagger install github.com/lukemarsden/dagger-ghcr-demo@v0.1.4
Entrypoint
Return Type
DaggerGhcrDemo
Example
func (m *myModule) example() *DaggerGhcrDemo {
return dag.
DaggerGhcrDemo()
}
Types
DaggerGhcrDemo 🔗
build() 🔗
Application specific build logic
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
buildContext | Directory ! | - | No description provided |
Example
func (m *myModule) example(buildContext *Directory) *Container {
return dag.
DaggerGhcrDemo().
Build(buildContext)
}
buildAndPush() 🔗
Take the built container and push it
Return Type
Void !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
registry | String ! | - | No description provided |
imageName | String ! | - | No description provided |
username | String ! | - | No description provided |
password | Secret ! | - | No description provided |
buildContext | Directory ! | - | No description provided |
Example
func (m *myModule) example(ctx context.Context, registry string, imageName string, username string, password *Secret, buildContext *Directory) {
return dag.
DaggerGhcrDemo().
BuildAndPush(ctx, registry, imageName, username, password, buildContext)
}