Go to file
Dustin 356d9ecc1d buildContainerImage: Handle null arguments
If the `buildContainerImage` method is called without passing any
arguments at all, the `args` object will be `null`.  Attempting to
access the properties of it in that case raises a
`NullPointerException`.  Fortunately, Groovy has a `?` operator that
returns `null` when the named object is `null` and avoids accessing its
properties.
2022-12-01 20:06:59 -06:00
resources Initial commit 2022-11-06 21:36:25 -06:00
vars buildContainerImage: Handle null arguments 2022-12-01 20:06:59 -06:00
README.md Initial commit 2022-11-06 21:36:25 -06:00

README.md

Container Images Shared Library

This shared library allows jobs to build and publish container images to Gitea very easily:

buildContainerImage()

That's it!