Skip to content

Commit b500d9c

Browse files
committed
Missing entry in action.yml
1 parent aa3823e commit b500d9c

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.10.1 (2020/12/24)
4+
5+
* Missing entry in `action.yml`
6+
37
## 1.10.0 (2020/12/24)
48

59
* Add `bake-file` output (#36)

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,32 @@ jobs:
220220
build
221221
```
222222

223+
Content of `${{ steps.docker_meta.outputs.bake-file }}` file will look like this:
224+
225+
```json
226+
{
227+
"target": {
228+
"ghaction-docker-meta": {
229+
"tags": [
230+
"name/app:1.1.1",
231+
"name/app:1.1",
232+
"name/app:latest"
233+
],
234+
"labels": {
235+
"org.opencontainers.image.title": "Hello-World",
236+
"org.opencontainers.image.description": "This your first repo!",
237+
"org.opencontainers.image.url": "https://github.com/octocat/Hello-World",
238+
"org.opencontainers.image.source": "https://github.com/octocat/Hello-World",
239+
"org.opencontainers.image.version": "1.1.1",
240+
"org.opencontainers.image.created": "2020-01-10T00:30:00.000Z",
241+
"org.opencontainers.image.revision": "90dd6032fac8bda1b6c4436a2e65de27961ed071",
242+
"org.opencontainers.image.licenses": "MIT"
243+
}
244+
}
245+
}
246+
}
247+
```
248+
223249
## Customizing
224250

225251
### inputs

action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ inputs:
5050
tag-custom-only:
5151
description: 'Only use tag-custom as Docker tags'
5252
required: false
53+
label-custom:
54+
description: 'List of custom labels'
55+
required: false
5356
sep-tags:
5457
description: 'Separator to use for tags output (default \n)'
5558
required: false

0 commit comments

Comments
 (0)