Missing entry in action.yml
ci / multi-images (push) Successful in 7s
Details
ci / tag-schedule () (push) Successful in 7s
Details
ci / tag-schedule (cron-{{date 'YYYYMMDD'}}) (push) Successful in 7s
Details
ci / tag-schedule (schedule) (push) Successful in 6s
Details
ci / tag-schedule ({{date 'YYYYMMDD-HHmmss'}}) (push) Successful in 7s
Details
ci / tag-match (\d{1,3}.\d{1,3}, 0) (push) Successful in 7s
Details
ci / tag-match (\d{1,3}.\d{1,3}.\d{1,3}, 0) (push) Successful in 7s
Details
ci / tag-match (v(.*), 1) (push) Successful in 7s
Details
ci / tag-semver (false) (push) Successful in 7s
Details
ci / tag-semver (true) (push) Successful in 6s
Details
ci / label-custom (push) Successful in 7s
Details
ci / docker-push (push) Failing after 17s
Details
ci / bake (push) Failing after 10s
Details
ci / multi-images (push) Successful in 7s
Details
ci / tag-schedule () (push) Successful in 7s
Details
ci / tag-schedule (cron-{{date 'YYYYMMDD'}}) (push) Successful in 7s
Details
ci / tag-schedule (schedule) (push) Successful in 6s
Details
ci / tag-schedule ({{date 'YYYYMMDD-HHmmss'}}) (push) Successful in 7s
Details
ci / tag-match (\d{1,3}.\d{1,3}, 0) (push) Successful in 7s
Details
ci / tag-match (\d{1,3}.\d{1,3}.\d{1,3}, 0) (push) Successful in 7s
Details
ci / tag-match (v(.*), 1) (push) Successful in 7s
Details
ci / tag-semver (false) (push) Successful in 7s
Details
ci / tag-semver (true) (push) Successful in 6s
Details
ci / label-custom (push) Successful in 7s
Details
ci / docker-push (push) Failing after 17s
Details
ci / bake (push) Failing after 10s
Details
This commit is contained in:
parent
aa3823e012
commit
b500d9c7b5
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.10.1 (2020/12/24)
|
||||||
|
|
||||||
|
* Missing entry in `action.yml`
|
||||||
|
|
||||||
## 1.10.0 (2020/12/24)
|
## 1.10.0 (2020/12/24)
|
||||||
|
|
||||||
* Add `bake-file` output (#36)
|
* Add `bake-file` output (#36)
|
||||||
|
|
26
README.md
26
README.md
|
@ -220,6 +220,32 @@ jobs:
|
||||||
build
|
build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Content of `${{ steps.docker_meta.outputs.bake-file }}` file will look like this:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"target": {
|
||||||
|
"ghaction-docker-meta": {
|
||||||
|
"tags": [
|
||||||
|
"name/app:1.1.1",
|
||||||
|
"name/app:1.1",
|
||||||
|
"name/app:latest"
|
||||||
|
],
|
||||||
|
"labels": {
|
||||||
|
"org.opencontainers.image.title": "Hello-World",
|
||||||
|
"org.opencontainers.image.description": "This your first repo!",
|
||||||
|
"org.opencontainers.image.url": "https://github.com/octocat/Hello-World",
|
||||||
|
"org.opencontainers.image.source": "https://github.com/octocat/Hello-World",
|
||||||
|
"org.opencontainers.image.version": "1.1.1",
|
||||||
|
"org.opencontainers.image.created": "2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision": "90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses": "MIT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Customizing
|
## Customizing
|
||||||
|
|
||||||
### inputs
|
### inputs
|
||||||
|
|
|
@ -50,6 +50,9 @@ inputs:
|
||||||
tag-custom-only:
|
tag-custom-only:
|
||||||
description: 'Only use tag-custom as Docker tags'
|
description: 'Only use tag-custom as Docker tags'
|
||||||
required: false
|
required: false
|
||||||
|
label-custom:
|
||||||
|
description: 'List of custom labels'
|
||||||
|
required: false
|
||||||
sep-tags:
|
sep-tags:
|
||||||
description: 'Separator to use for tags output (default \n)'
|
description: 'Separator to use for tags output (default \n)'
|
||||||
required: false
|
required: false
|
||||||
|
|
Loading…
Reference in New Issue