mirror of
https://gitea.com/docker/metadata-action.git
synced 2024-11-22 03:59:33 +01:00
Update README
This commit is contained in:
parent
3b38d53d94
commit
a0b5755726
1 changed files with 14 additions and 10 deletions
24
README.md
24
README.md
|
@ -17,6 +17,7 @@ If you are interested, [check out](https://git.io/Je09Y) my other :octocat: GitH
|
||||||
___
|
___
|
||||||
|
|
||||||
* [Features](#features)
|
* [Features](#features)
|
||||||
|
* [Overview](#overview)
|
||||||
* [Usage](#usage)
|
* [Usage](#usage)
|
||||||
* [Customizing](#customizing)
|
* [Customizing](#customizing)
|
||||||
* [inputs](#inputs)
|
* [inputs](#inputs)
|
||||||
|
@ -31,19 +32,22 @@ ___
|
||||||
|
|
||||||
* Docker tags generated from GitHub action event and Git metadata
|
* Docker tags generated from GitHub action event and Git metadata
|
||||||
* [OCI Image Format Specification](https://github.com/opencontainers/image-spec/blob/master/annotations.md) used to generate Docker labels
|
* [OCI Image Format Specification](https://github.com/opencontainers/image-spec/blob/master/annotations.md) used to generate Docker labels
|
||||||
|
* [Handlebars template](https://handlebarsjs.com/guide/) to apply to schedule tag
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
| Event | Ref | Commit SHA | Docker Tags |
|
||||||
|
|-----------------|-------------------------------|------------|------------------------------------|
|
||||||
|
| `schedule` | | `45f132a` | `sha-45f132a`, `nightly` |
|
||||||
|
| `pull_request` | `refs/pull/2/merge` | `a123b57` | `sha-a123b57`, `pr-2` |
|
||||||
|
| `push` | `refs/heads/<default_branch>` | `676cae2` | `sha-676cae2`, `edge` |
|
||||||
|
| `push` | `refs/heads/dev` | `cf20257` | `sha-cf20257`, `dev` |
|
||||||
|
| `push` | `refs/heads/my/branch` | `a5df687` | `sha-a5df687`, `my-branch` |
|
||||||
|
| `push tag` | `refs/tags/v1.2.3` | `bf4565b` | `sha-bf4565b`, `1.2.3`, `latest` |
|
||||||
|
| `push tag` | `refs/tags/mytag` | `afb7833` | `sha-afb7833`, `mytag` |
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
| Event | Ref | Commit SHA | Docker Tag | Pushed |
|
|
||||||
|-----------------|-------------------------------|------------|------------------------------------|--------|
|
|
||||||
| `schedule` | | `45f132a` | `sha-45f132a`, `nightly` | Yes |
|
|
||||||
| `pull_request` | `refs/pull/2/merge` | `a123b57` | `sha-a123b57`, `pr-2` | No |
|
|
||||||
| `push` | `refs/heads/<default_branch>` | `676cae2` | `sha-676cae2`, `edge` | Yes |
|
|
||||||
| `push` | `refs/heads/dev` | `cf20257` | `sha-cf20257`, `dev` | Yes |
|
|
||||||
| `push` | `refs/heads/my/branch` | `a5df687` | `sha-a5df687`, `my-branch` | Yes |
|
|
||||||
| `push tag` | `refs/tags/v1.2.3` | `bf4565b` | `sha-bf4565b`, `1.2.3`, `latest` | Yes |
|
|
||||||
| `push tag` | `refs/tags/mytag` | `afb7833` | `sha-afb7833`, `mytag` | Yes |
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: ci
|
name: ci
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue