2020-10-25 02:25:23 +01:00
|
|
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
2020-10-25 03:26:17 +01:00
|
|
|
name: 'Docker Meta'
|
2020-10-25 02:25:23 +01:00
|
|
|
description: "GitHub Action to extract metadata (tags, labels) for Docker"
|
|
|
|
author: 'crazy-max'
|
|
|
|
branding:
|
|
|
|
color: 'blue'
|
|
|
|
icon: 'layers'
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
images:
|
|
|
|
description: 'List of Docker images to use as base name for tags'
|
|
|
|
required: true
|
|
|
|
tag-sha:
|
|
|
|
description: 'Add git short SHA as Docker tag'
|
|
|
|
default: 'false'
|
|
|
|
required: false
|
|
|
|
tag-edge:
|
2020-10-25 15:32:14 +01:00
|
|
|
description: 'Enable edge branch tagging'
|
|
|
|
default: 'false'
|
|
|
|
required: false
|
|
|
|
tag-edge-branch:
|
2020-10-25 03:21:46 +01:00
|
|
|
description: 'Branch that will be tagged as edge (default repo.default_branch)'
|
2020-10-25 02:25:23 +01:00
|
|
|
required: false
|
2020-11-18 00:39:59 +01:00
|
|
|
tag-semver:
|
|
|
|
description: 'Handle Git tag as semver template if possible'
|
|
|
|
required: false
|
2020-10-27 00:57:32 +01:00
|
|
|
tag-match:
|
|
|
|
description: 'RegExp to match against a Git tag and use match group as Docker tag'
|
2020-10-26 01:39:21 +01:00
|
|
|
required: false
|
2020-10-27 02:32:26 +01:00
|
|
|
tag-match-group:
|
|
|
|
description: 'Group to get if tag-match matches (default 0)'
|
|
|
|
default: '0'
|
|
|
|
required: false
|
2020-12-01 06:29:34 +01:00
|
|
|
tag-latest:
|
|
|
|
description: 'Set latest Docker tag if tag-semver, tag-match or Git tag event occurs'
|
|
|
|
default: 'true'
|
|
|
|
required: false
|
2020-10-27 00:57:32 +01:00
|
|
|
tag-match-latest:
|
2020-12-01 06:29:34 +01:00
|
|
|
deprecationMessage: 'tag-match-latest is deprecated. Use tag-latest instead'
|
|
|
|
description: '(DEPRECATED) Set latest Docker tag if tag-match matches or on Git tag event'
|
2020-10-27 00:57:32 +01:00
|
|
|
default: 'true'
|
2020-10-26 17:51:00 +01:00
|
|
|
required: false
|
2020-10-25 15:13:43 +01:00
|
|
|
tag-schedule:
|
2020-10-26 17:58:13 +01:00
|
|
|
description: 'Template to apply to schedule tag'
|
2020-10-25 15:13:43 +01:00
|
|
|
default: 'nightly'
|
|
|
|
required: false
|
2020-12-04 18:12:39 +01:00
|
|
|
tag-custom:
|
|
|
|
description: 'List of custom tags'
|
|
|
|
required: false
|
|
|
|
tag-custom-only:
|
|
|
|
description: 'Only use tag-custom as Docker tags'
|
|
|
|
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
|
|
|
|
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'
|
|
|
|
|
|
|
|
runs:
|
|
|
|
using: 'node12'
|
|
|
|
main: 'dist/index.js'
|