2020-10-25 02:25:23 +01:00
|
|
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
2021-05-10 15:39:06 +02:00
|
|
|
name: 'Docker Metadata action'
|
2020-10-25 02:25:23 +01:00
|
|
|
description: "GitHub Action to extract metadata (tags, labels) for Docker"
|
2021-05-08 01:41:46 +02:00
|
|
|
author: 'docker'
|
2020-10-25 02:25:23 +01:00
|
|
|
branding:
|
2021-05-08 01:41:46 +02:00
|
|
|
icon: 'anchor'
|
2020-10-25 02:25:23 +01:00
|
|
|
color: 'blue'
|
|
|
|
|
|
|
|
inputs:
|
2022-12-15 14:46:34 +01:00
|
|
|
context:
|
|
|
|
description: 'Where to get context data. Allowed options are "workflow" (default), "git".'
|
|
|
|
default: "workflow"
|
|
|
|
required: true
|
2020-10-25 02:25:23 +01:00
|
|
|
images:
|
|
|
|
description: 'List of Docker images to use as base name for tags'
|
2023-11-30 10:41:18 +01:00
|
|
|
required: false
|
2021-03-29 13:04:53 +02:00
|
|
|
tags:
|
|
|
|
description: 'List of tags as key-value pair attributes'
|
2020-12-04 18:12:39 +01:00
|
|
|
required: false
|
2021-03-29 13:04:53 +02:00
|
|
|
flavor:
|
|
|
|
description: 'Flavors to apply'
|
2020-12-04 18:12:39 +01:00
|
|
|
required: false
|
2021-03-29 13:04:53 +02:00
|
|
|
labels:
|
2020-12-24 14:06:20 +01:00
|
|
|
description: 'List of custom labels'
|
|
|
|
required: false
|
2023-11-30 15:03:24 +01:00
|
|
|
annotations:
|
|
|
|
description: 'List of custom annotations'
|
|
|
|
required: false
|
2020-10-25 02:25:23 +01:00
|
|
|
sep-tags:
|
|
|
|
description: 'Separator to use for tags output (default \n)'
|
|
|
|
required: false
|
|
|
|
sep-labels:
|
|
|
|
description: 'Separator to use for labels output (default \n)'
|
|
|
|
required: false
|
2023-11-30 15:03:24 +01:00
|
|
|
sep-annotations:
|
|
|
|
description: 'Separator to use for annotations output (default \n)'
|
|
|
|
required: false
|
2021-04-30 00:51:48 +02:00
|
|
|
bake-target:
|
2021-05-10 15:54:35 +02:00
|
|
|
description: 'Bake target name (default docker-metadata-action)'
|
2021-04-30 00:51:48 +02:00
|
|
|
required: false
|
2020-10-25 02:25:23 +01:00
|
|
|
github-token:
|
|
|
|
description: 'GitHub Token as provided by secrets'
|
|
|
|
default: ${{ github.token }}
|
|
|
|
required: true
|
|
|
|
|
|
|
|
outputs:
|
2020-10-25 02:40:42 +01:00
|
|
|
version:
|
|
|
|
description: 'Generated Docker image version'
|
2020-10-25 02:25:23 +01:00
|
|
|
tags:
|
|
|
|
description: 'Generated Docker tags'
|
|
|
|
labels:
|
|
|
|
description: 'Generated Docker labels'
|
2023-11-27 11:39:37 +01:00
|
|
|
annotations:
|
|
|
|
description: 'Generated annotations'
|
2022-03-07 08:25:24 +01:00
|
|
|
json:
|
|
|
|
description: 'JSON output of tags and labels'
|
2023-11-22 22:46:29 +01:00
|
|
|
bake-file-tags:
|
|
|
|
description: 'Bake definition file with tags'
|
|
|
|
bake-file-labels:
|
|
|
|
description: 'Bake definition file with labels'
|
2023-11-27 11:39:37 +01:00
|
|
|
bake-file-annotations:
|
|
|
|
description: 'Bake definiton file with annotations'
|
2023-11-22 22:46:29 +01:00
|
|
|
bake-file:
|
|
|
|
description: 'Bake definition file with tags and labels'
|
2020-10-25 02:25:23 +01:00
|
|
|
|
|
|
|
runs:
|
2023-09-07 10:27:29 +02:00
|
|
|
using: 'node20'
|
2020-10-25 02:25:23 +01:00
|
|
|
main: 'dist/index.js'
|