mirror of
https://code.forgejo.org/docker/metadata-action.git
synced 2025-08-06 06:10:54 +00:00
Handle semver tags (#14)
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
009f84cd69
commit
e8ce48988f
7 changed files with 2573 additions and 84 deletions
|
@ -29,9 +29,9 @@ async function run() {
|
|||
|
||||
const version: Version = meta.version();
|
||||
core.startGroup(`Docker image version`);
|
||||
core.info(version.version || '');
|
||||
core.info(version.main || '');
|
||||
core.endGroup();
|
||||
core.setOutput('version', version.version || '');
|
||||
core.setOutput('version', version.main || '');
|
||||
|
||||
const tags: Array<string> = meta.tags();
|
||||
core.startGroup(`Docker tags`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue