Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1c62cbada4 | ||
|
5bc3bf6dce | ||
|
8ec02f11ef | ||
|
82966b7661 | ||
|
cb039680df | ||
|
a0b5755726 | ||
|
3b38d53d94 | ||
|
88d487154b |
50
.github/workflows/ci.yml
vendored
50
.github/workflows/ci.yml
vendored
@@ -2,7 +2,7 @@ name: ci
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 10 * * 0' # everyday sunday at 10am
|
- cron: '0 * * * *' # every hours
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- '**'
|
- '**'
|
||||||
@@ -22,7 +22,6 @@ jobs:
|
|||||||
uses: actions/checkout@v2.3.3
|
uses: actions/checkout@v2.3.3
|
||||||
-
|
-
|
||||||
name: Docker meta
|
name: Docker meta
|
||||||
id: docker_meta
|
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
@@ -30,6 +29,53 @@ jobs:
|
|||||||
ghcr.io/name/app
|
ghcr.io/name/app
|
||||||
tag-sha: true
|
tag-sha: true
|
||||||
|
|
||||||
|
tag-schedule:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
tag-schedule:
|
||||||
|
- ""
|
||||||
|
- "cron-{{date 'YYYYMMDD'}}"
|
||||||
|
- "{{date 'YYYYMMDD-HHmmss'}}"
|
||||||
|
- "schedule"
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2.3.3
|
||||||
|
-
|
||||||
|
name: Docker meta
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
${{ env.DOCKER_IMAGE }}
|
||||||
|
ghcr.io/name/app
|
||||||
|
tag-sha: true
|
||||||
|
tag-schedule: ${{ matrix.tag-schedule }}
|
||||||
|
|
||||||
|
coerce:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
tag-coerce-tag:
|
||||||
|
- "{{raw}}"
|
||||||
|
- "{{major}}.{{minor}}"
|
||||||
|
- "{{patch}}"
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2.3.3
|
||||||
|
-
|
||||||
|
name: Docker meta
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
${{ env.DOCKER_IMAGE }}
|
||||||
|
ghcr.io/name/app
|
||||||
|
tag-coerce-tag: ${{ matrix.tag-coerce-tag }}
|
||||||
|
tag-sha: true
|
||||||
|
|
||||||
docker-push:
|
docker-push:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
services:
|
services:
|
||||||
|
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
@@ -26,14 +26,7 @@ jobs:
|
|||||||
run: docker buildx bake test
|
run: docker buildx bake test
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
os:
|
|
||||||
- ubuntu-latest
|
|
||||||
- macOS-latest
|
|
||||||
- windows-latest
|
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
|
@@ -1,5 +1,14 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.2.0 (2020/10/26)
|
||||||
|
|
||||||
|
* Coerces Git tag to semver (#3)
|
||||||
|
|
||||||
|
## 1.1.0 (2020/10/25)
|
||||||
|
|
||||||
|
* Allow to templatize schedule tag (#1)
|
||||||
|
* Allow to disable edge branch tagging (#2)
|
||||||
|
|
||||||
## 1.0.0 (2020/10/25)
|
## 1.0.0 (2020/10/25)
|
||||||
|
|
||||||
* Initial version
|
* Initial version
|
||||||
|
67
README.md
67
README.md
@@ -17,10 +17,15 @@ 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)
|
||||||
* [outputs](#outputs)
|
* [outputs](#outputs)
|
||||||
|
* [Notes](#notes)
|
||||||
|
* [Latest tag](#latest-tag)
|
||||||
|
* [Coerces Git tag](#coerces-git-tag)
|
||||||
|
* [Templates available for schedule tag](#templates-available-for-schedule-tag)
|
||||||
* [Keep up-to-date with GitHub Dependabot](#keep-up-to-date-with-github-dependabot)
|
* [Keep up-to-date with GitHub Dependabot](#keep-up-to-date-with-github-dependabot)
|
||||||
* [How can I help?](#how-can-i-help)
|
* [How can I help?](#how-can-i-help)
|
||||||
* [License](#license)
|
* [License](#license)
|
||||||
@@ -29,19 +34,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` | | | `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` | | `1.2.3`, `latest` | Yes |
|
|
||||||
| `push tag` | `refs/tags/mytag` | | `mytag` | Yes |
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: ci
|
name: ci
|
||||||
|
|
||||||
@@ -106,7 +114,10 @@ Following inputs can be used as `step.with` keys
|
|||||||
|---------------------|----------|------------------------------------|
|
|---------------------|----------|------------------------------------|
|
||||||
| `images` | List/CSV | List of Docker images to use as base name for tags |
|
| `images` | List/CSV | List of Docker images to use as base name for tags |
|
||||||
| `tag-sha` | Bool | Add git short SHA as Docker tag (default `false`) |
|
| `tag-sha` | Bool | Add git short SHA as Docker tag (default `false`) |
|
||||||
| `tag-edge` | String | Branch that will be tagged as edge (default `repo.default_branch`) |
|
| `tag-edge` | Bool | Enable edge branch tagging (default `false`) |
|
||||||
|
| `tag-edge-branch` | String | Branch that will be tagged as edge (default `repo.default_branch`) |
|
||||||
|
| `tag-coerce-tag` | String | Coerces Git tag to semver if possible using [Handlebars template](https://handlebarsjs.com/guide/) |
|
||||||
|
| `tag-schedule` | String | [Handlebars template](https://handlebarsjs.com/guide/) to apply to schedule tag (default `nightly`) |
|
||||||
| `sep-tags` | String | Separator to use for tags output (default `\n`) |
|
| `sep-tags` | String | Separator to use for tags output (default `\n`) |
|
||||||
| `sep-labels` | String | Separator to use for labels output (default `\n`) |
|
| `sep-labels` | String | Separator to use for labels output (default `\n`) |
|
||||||
|
|
||||||
@@ -122,6 +133,40 @@ Following outputs are available
|
|||||||
| `tags` | String | Generated Docker tags |
|
| `tags` | String | Generated Docker tags |
|
||||||
| `labels` | String | Generated Docker labels |
|
| `labels` | String | Generated Docker labels |
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
### Latest tag
|
||||||
|
|
||||||
|
`latest` tag is created only on `push tag` event and resolves one of the following conditions:
|
||||||
|
|
||||||
|
* Git tag is a valid [semver](https://semver.org/)
|
||||||
|
* Provided `tag-coerce-tag` is valid
|
||||||
|
|
||||||
|
### Coerces Git tag
|
||||||
|
|
||||||
|
Provides a very forgiving translation of a non-semver tag to semver. For more information see
|
||||||
|
[Coercion section](https://www.npmjs.com/package/semver#coercion). `tag-coerce-tag` supports
|
||||||
|
[Handlebars template](https://handlebarsjs.com/guide/) with the following inputs:
|
||||||
|
|
||||||
|
| `tag-coerce-tag` | Git tag | Version |
|
||||||
|
|-------------------------|----------|---------|
|
||||||
|
| `{{raw}}` | `v1.2.3` | `1.2.3` |
|
||||||
|
| `{{major}}.{{minor}}` | `v1.2.3` | `1.2` |
|
||||||
|
| `{{major}}` | `v1.2.3` | `1` |
|
||||||
|
| `{{minor}}` | `v1.2.3` | `2` |
|
||||||
|
| `{{patch}}` | `v1.2.3` | `3` |
|
||||||
|
|
||||||
|
### Templates available for schedule tag
|
||||||
|
|
||||||
|
`tag-schedule` is specially crafted input to support [Handlebars template](https://handlebarsjs.com/guide/) with
|
||||||
|
the following expressions:
|
||||||
|
|
||||||
|
| Expression | Example | Description |
|
||||||
|
|-------------------------|-------------------------------------------|------------------------------------------|
|
||||||
|
| `{{date 'format'}}` | `{{date 'YYYYMMDD'}}` > `20200110` | Render date by its [moment format](https://momentjs.com/docs/#/displaying/format/)
|
||||||
|
|
||||||
|
You can find more examples in the [CI workflow](.github/workflows/ci.yml).
|
||||||
|
|
||||||
## Keep up-to-date with GitHub Dependabot
|
## Keep up-to-date with GitHub Dependabot
|
||||||
|
|
||||||
Since [Dependabot](https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot)
|
Since [Dependabot](https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot)
|
||||||
|
23
__tests__/fixtures/event_tag_20200110-RC2.env
Normal file
23
__tests__/fixtures/event_tag_20200110-RC2.env
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
GITHUB_ACTION=crazy-maxghaction-dump-context
|
||||||
|
GITHUB_ACTIONS=true
|
||||||
|
GITHUB_ACTION_PATH=/home/runner/work/_actions/crazy-max/ghaction-dump-context/v1
|
||||||
|
GITHUB_ACTOR=crazy-max
|
||||||
|
GITHUB_API_URL=https://api.github.com
|
||||||
|
GITHUB_BASE_REF=
|
||||||
|
GITHUB_ENV=/home/runner/work/_temp/_runner_file_commands/set_env_6ee180c2-b331-434a-a867-89534cbefd83
|
||||||
|
GITHUB_EVENT_NAME=push
|
||||||
|
#GITHUB_EVENT_PATH=/home/runner/work/_temp/_github_workflow/event.json
|
||||||
|
GITHUB_GRAPHQL_URL=https://api.github.com/graphql
|
||||||
|
GITHUB_HEAD_REF=
|
||||||
|
GITHUB_JOB=event
|
||||||
|
GITHUB_PATH=/home/runner/work/_temp/_runner_file_commands/add_path_6ee180c2-b331-434a-a867-89534cbefd83
|
||||||
|
GITHUB_REF=refs/tags/20200110-RC2
|
||||||
|
GITHUB_REPOSITORY=crazy-max/test-docker-action
|
||||||
|
GITHUB_REPOSITORY_OWNER=crazy-max
|
||||||
|
GITHUB_RETENTION_DAYS=90
|
||||||
|
GITHUB_RUN_ID=325968230
|
||||||
|
GITHUB_RUN_NUMBER=4
|
||||||
|
GITHUB_SERVER_URL=https://github.com
|
||||||
|
GITHUB_SHA=90dd6032fac8bda1b6c4436a2e65de27961ed071
|
||||||
|
GITHUB_WORKFLOW=event
|
||||||
|
GITHUB_WORKSPACE=/home/runner/work/test-docker-action/test-docker-action
|
23
__tests__/fixtures/event_tag_sometag.env
Normal file
23
__tests__/fixtures/event_tag_sometag.env
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
GITHUB_ACTION=crazy-maxghaction-dump-context
|
||||||
|
GITHUB_ACTIONS=true
|
||||||
|
GITHUB_ACTION_PATH=/home/runner/work/_actions/crazy-max/ghaction-dump-context/v1
|
||||||
|
GITHUB_ACTOR=crazy-max
|
||||||
|
GITHUB_API_URL=https://api.github.com
|
||||||
|
GITHUB_BASE_REF=
|
||||||
|
GITHUB_ENV=/home/runner/work/_temp/_runner_file_commands/set_env_6ee180c2-b331-434a-a867-89534cbefd83
|
||||||
|
GITHUB_EVENT_NAME=push
|
||||||
|
#GITHUB_EVENT_PATH=/home/runner/work/_temp/_github_workflow/event.json
|
||||||
|
GITHUB_GRAPHQL_URL=https://api.github.com/graphql
|
||||||
|
GITHUB_HEAD_REF=
|
||||||
|
GITHUB_JOB=event
|
||||||
|
GITHUB_PATH=/home/runner/work/_temp/_runner_file_commands/add_path_6ee180c2-b331-434a-a867-89534cbefd83
|
||||||
|
GITHUB_REF=refs/tags/sometag
|
||||||
|
GITHUB_REPOSITORY=crazy-max/test-docker-action
|
||||||
|
GITHUB_REPOSITORY_OWNER=crazy-max
|
||||||
|
GITHUB_RETENTION_DAYS=90
|
||||||
|
GITHUB_RUN_ID=325968230
|
||||||
|
GITHUB_RUN_NUMBER=4
|
||||||
|
GITHUB_SERVER_URL=https://github.com
|
||||||
|
GITHUB_SHA=90dd6032fac8bda1b6c4436a2e65de27961ed071
|
||||||
|
GITHUB_WORKFLOW=event
|
||||||
|
GITHUB_WORKSPACE=/home/runner/work/test-docker-action/test-docker-action
|
23
__tests__/fixtures/event_tag_v2.0.8-beta.67.env
Normal file
23
__tests__/fixtures/event_tag_v2.0.8-beta.67.env
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
GITHUB_ACTION=crazy-maxghaction-dump-context
|
||||||
|
GITHUB_ACTIONS=true
|
||||||
|
GITHUB_ACTION_PATH=/home/runner/work/_actions/crazy-max/ghaction-dump-context/v1
|
||||||
|
GITHUB_ACTOR=crazy-max
|
||||||
|
GITHUB_API_URL=https://api.github.com
|
||||||
|
GITHUB_BASE_REF=
|
||||||
|
GITHUB_ENV=/home/runner/work/_temp/_runner_file_commands/set_env_6ee180c2-b331-434a-a867-89534cbefd83
|
||||||
|
GITHUB_EVENT_NAME=push
|
||||||
|
#GITHUB_EVENT_PATH=/home/runner/work/_temp/_github_workflow/event.json
|
||||||
|
GITHUB_GRAPHQL_URL=https://api.github.com/graphql
|
||||||
|
GITHUB_HEAD_REF=
|
||||||
|
GITHUB_JOB=event
|
||||||
|
GITHUB_PATH=/home/runner/work/_temp/_runner_file_commands/add_path_6ee180c2-b331-434a-a867-89534cbefd83
|
||||||
|
GITHUB_REF=refs/tags/v2.0.8-beta.67
|
||||||
|
GITHUB_REPOSITORY=crazy-max/test-docker-action
|
||||||
|
GITHUB_REPOSITORY_OWNER=crazy-max
|
||||||
|
GITHUB_RETENTION_DAYS=90
|
||||||
|
GITHUB_RUN_ID=325968230
|
||||||
|
GITHUB_RUN_NUMBER=4
|
||||||
|
GITHUB_SERVER_URL=https://github.com
|
||||||
|
GITHUB_SHA=90dd6032fac8bda1b6c4436a2e65de27961ed071
|
||||||
|
GITHUB_WORKFLOW=event
|
||||||
|
GITHUB_WORKSPACE=/home/runner/work/test-docker-action/test-docker-action
|
@@ -1,9 +1,10 @@
|
|||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import * as dotenv from 'dotenv';
|
import * as dotenv from 'dotenv';
|
||||||
import {Inputs} from '../src/context';
|
import * as moment from 'moment';
|
||||||
|
import {getInputs, Inputs} from '../src/context';
|
||||||
import * as github from '../src/github';
|
import * as github from '../src/github';
|
||||||
import {Meta} from '../src/meta';
|
import {Meta, Version} from '../src/meta';
|
||||||
import {Context} from '@actions/github/lib/context';
|
import {Context} from '@actions/github/lib/context';
|
||||||
import {ReposGetResponseData} from '@octokit/types';
|
import {ReposGetResponseData} from '@octokit/types';
|
||||||
|
|
||||||
@@ -23,23 +24,51 @@ jest.spyOn(global.Date.prototype, 'toISOString').mockImplementation(() => {
|
|||||||
return '2020-01-10T00:30:00.000Z';
|
return '2020-01-10T00:30:00.000Z';
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('tags and labels', () => {
|
jest.mock('moment', () => {
|
||||||
beforeEach(() => {
|
return () => jest.requireActual('moment')('2020-01-10T00:30:00.000Z');
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
Object.keys(process.env).forEach(function (key) {
|
Object.keys(process.env).forEach(function (key) {
|
||||||
if (key !== 'GITHUB_TOKEN' && key.startsWith('GITHUB_')) {
|
if (key !== 'GITHUB_TOKEN' && key.startsWith('GITHUB_')) {
|
||||||
delete process.env[key];
|
delete process.env[key];
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const tagsLabelsTest = async (envFile: string, inputs: Inputs, exVersion: Version, exTags: Array<string>, exLabels: Array<string>) => {
|
||||||
|
process.env = dotenv.parse(fs.readFileSync(path.join(__dirname, 'fixtures', envFile)));
|
||||||
|
const context = github.context();
|
||||||
|
console.log(process.env, context);
|
||||||
|
|
||||||
|
const repo = await github.repo(process.env.GITHUB_TOKEN || '');
|
||||||
|
const meta = new Meta({...getInputs(), ...inputs}, context, repo);
|
||||||
|
|
||||||
|
const version = meta.version();
|
||||||
|
console.log('version', version);
|
||||||
|
expect(version).toEqual(exVersion);
|
||||||
|
|
||||||
|
const tags = meta.tags();
|
||||||
|
console.log('tags', tags);
|
||||||
|
expect(tags).toEqual(exTags);
|
||||||
|
|
||||||
|
const labels = meta.labels();
|
||||||
|
console.log('labels', labels);
|
||||||
|
expect(labels).toEqual(exLabels);
|
||||||
|
};
|
||||||
|
|
||||||
|
describe('null', () => {
|
||||||
// prettier-ignore
|
// prettier-ignore
|
||||||
test.each([
|
test.each([
|
||||||
[
|
[
|
||||||
'event_null.env',
|
'event_null.env',
|
||||||
{
|
{
|
||||||
images: ['user/app'],
|
images: ['user/app'],
|
||||||
},
|
} as Inputs,
|
||||||
undefined,
|
{
|
||||||
|
version: undefined,
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[],
|
[],
|
||||||
[
|
[
|
||||||
"org.opencontainers.image.title=Hello-World",
|
"org.opencontainers.image.title=Hello-World",
|
||||||
@@ -56,8 +85,11 @@ describe('tags and labels', () => {
|
|||||||
'event_empty.env',
|
'event_empty.env',
|
||||||
{
|
{
|
||||||
images: ['user/app'],
|
images: ['user/app'],
|
||||||
},
|
} as Inputs,
|
||||||
undefined,
|
{
|
||||||
|
version: undefined,
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[],
|
[],
|
||||||
[
|
[
|
||||||
"org.opencontainers.image.title=Hello-World",
|
"org.opencontainers.image.title=Hello-World",
|
||||||
@@ -70,32 +102,21 @@ describe('tags and labels', () => {
|
|||||||
"org.opencontainers.image.licenses=MIT"
|
"org.opencontainers.image.licenses=MIT"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
[
|
])('given %p event ', tagsLabelsTest);
|
||||||
'event_pull_request.env',
|
});
|
||||||
{
|
|
||||||
images: ['user/app'],
|
describe('push', () => {
|
||||||
},
|
// prettier-ignore
|
||||||
'pr-2',
|
test.each([
|
||||||
[
|
|
||||||
'user/app:pr-2'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"org.opencontainers.image.version=pr-2",
|
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
||||||
"org.opencontainers.image.revision=1e9249f05bfc090e0688b8fb9c1b347586add504",
|
|
||||||
"org.opencontainers.image.licenses=MIT"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
[
|
||||||
'event_push.env',
|
'event_push.env',
|
||||||
{
|
{
|
||||||
images: ['user/app'],
|
images: ['user/app'],
|
||||||
},
|
} as Inputs,
|
||||||
'dev',
|
{
|
||||||
|
version: 'dev',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'user/app:dev'
|
'user/app:dev'
|
||||||
],
|
],
|
||||||
@@ -114,8 +135,12 @@ describe('tags and labels', () => {
|
|||||||
'event_push_defbranch.env',
|
'event_push_defbranch.env',
|
||||||
{
|
{
|
||||||
images: ['user/app'],
|
images: ['user/app'],
|
||||||
},
|
tagEdge: true,
|
||||||
'edge',
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'edge',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'user/app:edge'
|
'user/app:edge'
|
||||||
],
|
],
|
||||||
@@ -131,82 +156,23 @@ describe('tags and labels', () => {
|
|||||||
]
|
]
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'event_release.env',
|
'event_push_defbranch.env',
|
||||||
{
|
{
|
||||||
images: ['user/app'],
|
images: ['user/app'],
|
||||||
},
|
} as Inputs,
|
||||||
'1.1.1',
|
{
|
||||||
|
version: 'master',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'user/app:1.1.1',
|
'user/app:master'
|
||||||
'user/app:latest'
|
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"org.opencontainers.image.title=Hello-World",
|
"org.opencontainers.image.title=Hello-World",
|
||||||
"org.opencontainers.image.description=This your first repo!",
|
"org.opencontainers.image.description=This your first repo!",
|
||||||
"org.opencontainers.image.url=https://github.com/octocat/Hello-World",
|
"org.opencontainers.image.url=https://github.com/octocat/Hello-World",
|
||||||
"org.opencontainers.image.source=https://github.com/octocat/Hello-World.git",
|
"org.opencontainers.image.source=https://github.com/octocat/Hello-World.git",
|
||||||
"org.opencontainers.image.version=1.1.1",
|
"org.opencontainers.image.version=master",
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
||||||
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
||||||
"org.opencontainers.image.licenses=MIT"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'event_schedule.env',
|
|
||||||
{
|
|
||||||
images: ['user/app'],
|
|
||||||
},
|
|
||||||
'nightly',
|
|
||||||
[
|
|
||||||
'user/app:nightly'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"org.opencontainers.image.version=nightly",
|
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
||||||
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
||||||
"org.opencontainers.image.licenses=MIT"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'event_tag.env',
|
|
||||||
{
|
|
||||||
images: ['user/app'],
|
|
||||||
},
|
|
||||||
'release1',
|
|
||||||
[
|
|
||||||
'user/app:release1'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"org.opencontainers.image.version=release1",
|
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
||||||
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
||||||
"org.opencontainers.image.licenses=MIT"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'event_tag_semver.env',
|
|
||||||
{
|
|
||||||
images: ['user/app'],
|
|
||||||
},
|
|
||||||
'1.1.1',
|
|
||||||
[
|
|
||||||
'user/app:1.1.1',
|
|
||||||
'user/app:latest'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"org.opencontainers.image.version=1.1.1",
|
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
"org.opencontainers.image.licenses=MIT"
|
"org.opencontainers.image.licenses=MIT"
|
||||||
@@ -216,8 +182,12 @@ describe('tags and labels', () => {
|
|||||||
'event_workflow_dispatch.env',
|
'event_workflow_dispatch.env',
|
||||||
{
|
{
|
||||||
images: ['user/app'],
|
images: ['user/app'],
|
||||||
},
|
tagEdge: true,
|
||||||
'edge',
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'edge',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'user/app:edge'
|
'user/app:edge'
|
||||||
],
|
],
|
||||||
@@ -232,33 +202,15 @@ describe('tags and labels', () => {
|
|||||||
"org.opencontainers.image.licenses=MIT"
|
"org.opencontainers.image.licenses=MIT"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
[
|
|
||||||
'event_pull_request.env',
|
|
||||||
{
|
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
|
||||||
},
|
|
||||||
'pr-2',
|
|
||||||
[
|
|
||||||
'org/app:pr-2',
|
|
||||||
'ghcr.io/user/app:pr-2'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"org.opencontainers.image.version=pr-2",
|
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
||||||
"org.opencontainers.image.revision=1e9249f05bfc090e0688b8fb9c1b347586add504",
|
|
||||||
"org.opencontainers.image.licenses=MIT"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
[
|
||||||
'event_push.env',
|
'event_push.env',
|
||||||
{
|
{
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
},
|
} as Inputs,
|
||||||
'dev',
|
{
|
||||||
|
version: 'dev',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'org/app:dev',
|
'org/app:dev',
|
||||||
'ghcr.io/user/app:dev'
|
'ghcr.io/user/app:dev'
|
||||||
@@ -278,8 +230,12 @@ describe('tags and labels', () => {
|
|||||||
'event_push_defbranch.env',
|
'event_push_defbranch.env',
|
||||||
{
|
{
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
},
|
tagEdge: true,
|
||||||
'edge',
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'edge',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'org/app:edge',
|
'org/app:edge',
|
||||||
'ghcr.io/user/app:edge'
|
'ghcr.io/user/app:edge'
|
||||||
@@ -295,81 +251,16 @@ describe('tags and labels', () => {
|
|||||||
"org.opencontainers.image.licenses=MIT"
|
"org.opencontainers.image.licenses=MIT"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
[
|
|
||||||
'event_schedule.env',
|
|
||||||
{
|
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
|
||||||
},
|
|
||||||
'nightly',
|
|
||||||
[
|
|
||||||
'org/app:nightly',
|
|
||||||
'ghcr.io/user/app:nightly'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"org.opencontainers.image.version=nightly",
|
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
||||||
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
||||||
"org.opencontainers.image.licenses=MIT"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'event_tag_semver.env',
|
|
||||||
{
|
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
|
||||||
},
|
|
||||||
'1.1.1',
|
|
||||||
[
|
|
||||||
'org/app:1.1.1',
|
|
||||||
'org/app:latest',
|
|
||||||
'ghcr.io/user/app:1.1.1',
|
|
||||||
'ghcr.io/user/app:latest'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"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"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'event_pull_request.env',
|
|
||||||
{
|
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
|
||||||
tagSha: true,
|
|
||||||
},
|
|
||||||
'pr-2',
|
|
||||||
[
|
|
||||||
'org/app:pr-2',
|
|
||||||
'org/app:sha-1e9249f',
|
|
||||||
'ghcr.io/user/app:pr-2',
|
|
||||||
'ghcr.io/user/app:sha-1e9249f'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"org.opencontainers.image.version=pr-2",
|
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
||||||
"org.opencontainers.image.revision=1e9249f05bfc090e0688b8fb9c1b347586add504",
|
|
||||||
"org.opencontainers.image.licenses=MIT"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
[
|
||||||
'event_push.env',
|
'event_push.env',
|
||||||
{
|
{
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
tagSha: true,
|
tagSha: true,
|
||||||
},
|
} as Inputs,
|
||||||
'dev',
|
{
|
||||||
|
version: 'dev',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'org/app:dev',
|
'org/app:dev',
|
||||||
'org/app:sha-90dd603',
|
'org/app:sha-90dd603',
|
||||||
@@ -392,8 +283,12 @@ describe('tags and labels', () => {
|
|||||||
{
|
{
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
tagSha: true,
|
tagSha: true,
|
||||||
},
|
tagEdge: true,
|
||||||
'edge',
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'edge',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'org/app:edge',
|
'org/app:edge',
|
||||||
'org/app:sha-90dd603',
|
'org/app:sha-90dd603',
|
||||||
@@ -411,64 +306,18 @@ describe('tags and labels', () => {
|
|||||||
"org.opencontainers.image.licenses=MIT"
|
"org.opencontainers.image.licenses=MIT"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
[
|
|
||||||
'event_schedule.env',
|
|
||||||
{
|
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
|
||||||
tagSha: true,
|
|
||||||
},
|
|
||||||
'nightly',
|
|
||||||
[
|
|
||||||
'org/app:nightly',
|
|
||||||
'org/app:sha-90dd603',
|
|
||||||
'ghcr.io/user/app:nightly',
|
|
||||||
'ghcr.io/user/app:sha-90dd603'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"org.opencontainers.image.version=nightly",
|
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
||||||
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
||||||
"org.opencontainers.image.licenses=MIT"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'event_tag_semver.env',
|
|
||||||
{
|
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
|
||||||
tagSha: true,
|
|
||||||
},
|
|
||||||
'1.1.1',
|
|
||||||
[
|
|
||||||
'org/app:1.1.1',
|
|
||||||
'org/app:latest',
|
|
||||||
'org/app:sha-90dd603',
|
|
||||||
'ghcr.io/user/app:1.1.1',
|
|
||||||
'ghcr.io/user/app:latest',
|
|
||||||
'ghcr.io/user/app:sha-90dd603'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"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.git",
|
|
||||||
"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"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
[
|
||||||
'event_push.env',
|
'event_push.env',
|
||||||
{
|
{
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
tagSha: true,
|
tagSha: true,
|
||||||
tagEdge: 'dev'
|
tagEdge: true,
|
||||||
},
|
tagEdgeBranch: 'dev'
|
||||||
'edge',
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'edge',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'org/app:edge',
|
'org/app:edge',
|
||||||
'org/app:sha-90dd603',
|
'org/app:sha-90dd603',
|
||||||
@@ -491,9 +340,13 @@ describe('tags and labels', () => {
|
|||||||
{
|
{
|
||||||
images: ['org/app', 'ghcr.io/user/app'],
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
tagSha: true,
|
tagSha: true,
|
||||||
tagEdge: 'dev'
|
tagEdge: true,
|
||||||
},
|
tagEdgeBranch: 'dev'
|
||||||
'master',
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'master',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
[
|
[
|
||||||
'org/app:master',
|
'org/app:master',
|
||||||
'org/app:sha-90dd603',
|
'org/app:sha-90dd603',
|
||||||
@@ -511,26 +364,477 @@ describe('tags and labels', () => {
|
|||||||
"org.opencontainers.image.licenses=MIT"
|
"org.opencontainers.image.licenses=MIT"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
])('given %p event ', async (envFile, inputs, exVersion, exTags, exLabels) => {
|
])('given %p event ', tagsLabelsTest);
|
||||||
process.env = dotenv.parse(fs.readFileSync(path.join(__dirname, 'fixtures', envFile)));
|
});
|
||||||
console.log(process.env);
|
|
||||||
|
describe('push tag', () => {
|
||||||
const context = github.context();
|
// prettier-ignore
|
||||||
console.log(context);
|
test.each([
|
||||||
|
[
|
||||||
const repo = await github.repo(process.env.GITHUB_TOKEN || '');
|
'event_tag_release1.env',
|
||||||
const meta = new Meta(inputs as Inputs, context, repo);
|
{
|
||||||
|
images: ['user/app'],
|
||||||
const version = meta.version();
|
} as Inputs,
|
||||||
console.log(version)
|
{
|
||||||
expect(version).toEqual(exVersion);
|
version: 'release1',
|
||||||
|
latest: false
|
||||||
const tags = meta.tags();
|
} as Version,
|
||||||
console.log(tags)
|
[
|
||||||
expect(tags).toEqual(exTags);
|
'user/app:release1'
|
||||||
|
],
|
||||||
const labels = meta.labels();
|
[
|
||||||
console.log(labels)
|
"org.opencontainers.image.title=Hello-World",
|
||||||
expect(labels).toEqual(exLabels);
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=release1",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_tag_20200110-RC2.env',
|
||||||
|
{
|
||||||
|
images: ['user/app'],
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '20200110-RC2',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'user/app:20200110-RC2'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=20200110-RC2",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_tag_20200110-RC2.env',
|
||||||
|
{
|
||||||
|
images: ['user/app'],
|
||||||
|
tagCoerceTag: '{{major}}',
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '20200110',
|
||||||
|
latest: true
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'user/app:20200110',
|
||||||
|
'user/app:latest'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=20200110",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_tag_v1.1.1.env',
|
||||||
|
{
|
||||||
|
images: ['user/app'],
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '1.1.1',
|
||||||
|
latest: true
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'user/app:1.1.1',
|
||||||
|
'user/app:latest'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"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"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_tag_v1.1.1.env',
|
||||||
|
{
|
||||||
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '1.1.1',
|
||||||
|
latest: true
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'org/app:1.1.1',
|
||||||
|
'org/app:latest',
|
||||||
|
'ghcr.io/user/app:1.1.1',
|
||||||
|
'ghcr.io/user/app:latest'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"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"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_tag_v1.1.1.env',
|
||||||
|
{
|
||||||
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
|
tagSha: true,
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '1.1.1',
|
||||||
|
latest: true
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'org/app:1.1.1',
|
||||||
|
'org/app:latest',
|
||||||
|
'org/app:sha-90dd603',
|
||||||
|
'ghcr.io/user/app:1.1.1',
|
||||||
|
'ghcr.io/user/app:latest',
|
||||||
|
'ghcr.io/user/app:sha-90dd603'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"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"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_tag_v2.0.8-beta.67.env',
|
||||||
|
{
|
||||||
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '2.0.8-beta.67',
|
||||||
|
latest: true
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'org/app:2.0.8-beta.67',
|
||||||
|
'org/app:latest',
|
||||||
|
'ghcr.io/user/app:2.0.8-beta.67',
|
||||||
|
'ghcr.io/user/app:latest'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=2.0.8-beta.67",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_tag_v2.0.8-beta.67.env',
|
||||||
|
{
|
||||||
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
|
tagCoerceTag: '{{major}}.{{minor}}',
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '2.0',
|
||||||
|
latest: true
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'org/app:2.0',
|
||||||
|
'org/app:latest',
|
||||||
|
'ghcr.io/user/app:2.0',
|
||||||
|
'ghcr.io/user/app:latest'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=2.0",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_tag_sometag.env',
|
||||||
|
{
|
||||||
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
|
tagCoerceTag: '{{major}}.{{minor}}',
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'sometag',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'org/app:sometag',
|
||||||
|
'ghcr.io/user/app:sometag'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=sometag",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
])('given %p event ', tagsLabelsTest);
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('pull_request', () => {
|
||||||
|
// prettier-ignore
|
||||||
|
test.each([
|
||||||
|
[
|
||||||
|
'event_pull_request.env',
|
||||||
|
{
|
||||||
|
images: ['user/app'],
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'pr-2',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'user/app:pr-2'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=pr-2",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=1e9249f05bfc090e0688b8fb9c1b347586add504",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_pull_request.env',
|
||||||
|
{
|
||||||
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'pr-2',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'org/app:pr-2',
|
||||||
|
'ghcr.io/user/app:pr-2'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=pr-2",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=1e9249f05bfc090e0688b8fb9c1b347586add504",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_pull_request.env',
|
||||||
|
{
|
||||||
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
|
tagSha: true,
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'pr-2',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'org/app:pr-2',
|
||||||
|
'org/app:sha-1e9249f',
|
||||||
|
'ghcr.io/user/app:pr-2',
|
||||||
|
'ghcr.io/user/app:sha-1e9249f'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=pr-2",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=1e9249f05bfc090e0688b8fb9c1b347586add504",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
])('given %p event ', tagsLabelsTest);
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('schedule', () => {
|
||||||
|
// prettier-ignore
|
||||||
|
test.each([
|
||||||
|
[
|
||||||
|
'event_schedule.env',
|
||||||
|
{
|
||||||
|
images: ['user/app'],
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'nightly',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'user/app:nightly'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=nightly",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_schedule.env',
|
||||||
|
{
|
||||||
|
images: ['user/app'],
|
||||||
|
tagSchedule: `{{date 'YYYYMMDD'}}`
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '20200110',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'user/app:20200110'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=20200110",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_schedule.env',
|
||||||
|
{
|
||||||
|
images: ['user/app'],
|
||||||
|
tagSchedule: `{{date 'YYYYMMDD-HHmmss'}}`
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '20200110-003000',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'user/app:20200110-003000'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=20200110-003000",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_schedule.env',
|
||||||
|
{
|
||||||
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'nightly',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'org/app:nightly',
|
||||||
|
'ghcr.io/user/app:nightly'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=nightly",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'event_schedule.env',
|
||||||
|
{
|
||||||
|
images: ['org/app', 'ghcr.io/user/app'],
|
||||||
|
tagSha: true,
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: 'nightly',
|
||||||
|
latest: false
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'org/app:nightly',
|
||||||
|
'org/app:sha-90dd603',
|
||||||
|
'ghcr.io/user/app:nightly',
|
||||||
|
'ghcr.io/user/app:sha-90dd603'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"org.opencontainers.image.version=nightly",
|
||||||
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
])('given %p event ', tagsLabelsTest);
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('release', () => {
|
||||||
|
// prettier-ignore
|
||||||
|
test.each([
|
||||||
|
[
|
||||||
|
'event_release.env',
|
||||||
|
{
|
||||||
|
images: ['user/app'],
|
||||||
|
} as Inputs,
|
||||||
|
{
|
||||||
|
version: '1.1.1',
|
||||||
|
latest: true
|
||||||
|
} as Version,
|
||||||
|
[
|
||||||
|
'user/app:1.1.1',
|
||||||
|
'user/app:latest'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"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.git",
|
||||||
|
"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"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
])('given %p event ', tagsLabelsTest);
|
||||||
});
|
});
|
||||||
|
11
action.yml
11
action.yml
@@ -15,8 +15,19 @@ inputs:
|
|||||||
default: 'false'
|
default: 'false'
|
||||||
required: false
|
required: false
|
||||||
tag-edge:
|
tag-edge:
|
||||||
|
description: 'Enable edge branch tagging'
|
||||||
|
default: 'false'
|
||||||
|
required: false
|
||||||
|
tag-edge-branch:
|
||||||
description: 'Branch that will be tagged as edge (default repo.default_branch)'
|
description: 'Branch that will be tagged as edge (default repo.default_branch)'
|
||||||
required: false
|
required: false
|
||||||
|
tag-coerce-tag:
|
||||||
|
description: 'Coerces Git tag to semver if possible using Handlebars template'
|
||||||
|
required: false
|
||||||
|
tag-schedule:
|
||||||
|
description: 'Handlebars template to apply to schedule tag'
|
||||||
|
default: 'nightly'
|
||||||
|
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
|
||||||
|
14187
dist/index.js
generated
vendored
14187
dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
@@ -25,13 +25,15 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.2.6",
|
"@actions/core": "^1.2.6",
|
||||||
"@actions/github": "^4.0.0",
|
"@actions/github": "^4.0.0",
|
||||||
"dotenv": "^8.2.0",
|
"handlebars": "^4.7.6",
|
||||||
|
"moment": "^2.29.1",
|
||||||
"semver": "^7.3.2"
|
"semver": "^7.3.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "^26.0.0",
|
"@types/jest": "^26.0.0",
|
||||||
"@types/node": "^14.11.2",
|
"@types/node": "^14.11.2",
|
||||||
"@vercel/ncc": "^0.24.1",
|
"@vercel/ncc": "^0.24.1",
|
||||||
|
"dotenv": "^8.2.0",
|
||||||
"jest": "^26.0.1",
|
"jest": "^26.0.1",
|
||||||
"jest-circus": "^26.0.1",
|
"jest-circus": "^26.0.1",
|
||||||
"jest-runtime": "^26.0.1",
|
"jest-runtime": "^26.0.1",
|
||||||
|
@@ -3,7 +3,10 @@ import * as core from '@actions/core';
|
|||||||
export interface Inputs {
|
export interface Inputs {
|
||||||
images: string[];
|
images: string[];
|
||||||
tagSha: boolean;
|
tagSha: boolean;
|
||||||
tagEdge: string;
|
tagEdge: boolean;
|
||||||
|
tagEdgeBranch: string;
|
||||||
|
tagCoerceTag: string;
|
||||||
|
tagSchedule: string;
|
||||||
sepTags: string;
|
sepTags: string;
|
||||||
sepLabels: string;
|
sepLabels: string;
|
||||||
githubToken: string;
|
githubToken: string;
|
||||||
@@ -12,8 +15,11 @@ export interface Inputs {
|
|||||||
export function getInputs(): Inputs {
|
export function getInputs(): Inputs {
|
||||||
return {
|
return {
|
||||||
images: getInputList('images'),
|
images: getInputList('images'),
|
||||||
tagSha: /true/i.test(core.getInput('tag-sha')),
|
tagSha: /true/i.test(core.getInput('tag-sha') || 'false'),
|
||||||
tagEdge: core.getInput('tag-edge'),
|
tagEdge: /true/i.test(core.getInput('tag-edge') || 'false'),
|
||||||
|
tagEdgeBranch: core.getInput('tag-edge-branch'),
|
||||||
|
tagCoerceTag: core.getInput('tag-coerce-tag'),
|
||||||
|
tagSchedule: core.getInput('tag-schedule') || 'nightly',
|
||||||
sepTags: core.getInput('sep-tags') || `\n`,
|
sepTags: core.getInput('sep-tags') || `\n`,
|
||||||
sepLabels: core.getInput('sep-labels') || `\n`,
|
sepLabels: core.getInput('sep-labels') || `\n`,
|
||||||
githubToken: core.getInput('github-token')
|
githubToken: core.getInput('github-token')
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import {getInputs, Inputs} from './context';
|
import {getInputs, Inputs} from './context';
|
||||||
import * as github from './github';
|
import * as github from './github';
|
||||||
import {Meta} from './meta';
|
import {Meta, Version} from './meta';
|
||||||
import * as core from '@actions/core';
|
import * as core from '@actions/core';
|
||||||
import {Context} from '@actions/github/lib/context';
|
import {Context} from '@actions/github/lib/context';
|
||||||
import {ReposGetResponseData} from '@octokit/types';
|
import {ReposGetResponseData} from '@octokit/types';
|
||||||
@@ -27,11 +27,11 @@ async function run() {
|
|||||||
|
|
||||||
const meta: Meta = new Meta(inputs, context, repo);
|
const meta: Meta = new Meta(inputs, context, repo);
|
||||||
|
|
||||||
const version: string | undefined = meta.version();
|
const version: Version = meta.version();
|
||||||
core.startGroup(`Docker image version`);
|
core.startGroup(`Docker image version`);
|
||||||
core.info(`${version}`);
|
core.info(version.version || '');
|
||||||
core.endGroup();
|
core.endGroup();
|
||||||
core.setOutput('version', version);
|
core.setOutput('version', version.version || '');
|
||||||
|
|
||||||
const tags: Array<string> = meta.tags();
|
const tags: Array<string> = meta.tags();
|
||||||
core.startGroup(`Docker tags`);
|
core.startGroup(`Docker tags`);
|
||||||
|
109
src/meta.ts
109
src/meta.ts
@@ -1,52 +1,87 @@
|
|||||||
|
import * as handlebars from 'handlebars';
|
||||||
|
import * as moment from 'moment';
|
||||||
import * as semver from 'semver';
|
import * as semver from 'semver';
|
||||||
import {Inputs} from './context';
|
import {Inputs} from './context';
|
||||||
import * as core from '@actions/core';
|
|
||||||
import {Context} from '@actions/github/lib/context';
|
import {Context} from '@actions/github/lib/context';
|
||||||
import {ReposGetResponseData} from '@octokit/types';
|
import {ReposGetResponseData} from '@octokit/types';
|
||||||
|
|
||||||
|
export interface Version {
|
||||||
|
version: string | undefined;
|
||||||
|
latest: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
export class Meta {
|
export class Meta {
|
||||||
private readonly inputs: Inputs;
|
private readonly inputs: Inputs;
|
||||||
private readonly context: Context;
|
private readonly context: Context;
|
||||||
private readonly repo: ReposGetResponseData;
|
private readonly repo: ReposGetResponseData;
|
||||||
|
private readonly date: Date;
|
||||||
|
|
||||||
constructor(inputs: Inputs, context: Context, repo: ReposGetResponseData) {
|
constructor(inputs: Inputs, context: Context, repo: ReposGetResponseData) {
|
||||||
this.inputs = inputs;
|
this.inputs = inputs;
|
||||||
if (!this.inputs.tagEdge) {
|
if (!this.inputs.tagEdgeBranch) {
|
||||||
this.inputs.tagEdge = repo.default_branch;
|
this.inputs.tagEdgeBranch = repo.default_branch;
|
||||||
}
|
}
|
||||||
this.context = context;
|
this.context = context;
|
||||||
this.repo = repo;
|
this.repo = repo;
|
||||||
|
this.date = new Date();
|
||||||
}
|
}
|
||||||
|
|
||||||
public version(): string | undefined {
|
public version(): Version {
|
||||||
|
const currentDate = this.date;
|
||||||
|
const version: Version = {
|
||||||
|
version: undefined,
|
||||||
|
latest: false
|
||||||
|
};
|
||||||
|
|
||||||
if (/schedule/.test(this.context.eventName)) {
|
if (/schedule/.test(this.context.eventName)) {
|
||||||
return 'nightly';
|
version.version = handlebars.compile(this.inputs.tagSchedule)({
|
||||||
|
date: function (format) {
|
||||||
|
return moment(currentDate).utc().format(format);
|
||||||
|
}
|
||||||
|
});
|
||||||
} else if (/^refs\/tags\//.test(this.context.ref)) {
|
} else if (/^refs\/tags\//.test(this.context.ref)) {
|
||||||
const tag = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
const tag = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
||||||
const sver = semver.clean(tag);
|
const sver = semver.clean(tag);
|
||||||
return sver ? sver : tag;
|
if (this.inputs.tagCoerceTag) {
|
||||||
} else if (/^refs\/heads\//.test(this.context.ref)) {
|
const coerce = semver.coerce(tag);
|
||||||
const branch = this.context.ref.replace(/^refs\/heads\//g, '').replace(/\//g, '-');
|
if (coerce) {
|
||||||
return this.inputs.tagEdge === branch ? 'edge' : branch;
|
version.version = handlebars.compile(this.inputs.tagCoerceTag)(coerce);
|
||||||
} else if (/^refs\/pull\//.test(this.context.ref)) {
|
version.latest = true;
|
||||||
const pr = this.context.ref.replace(/^refs\/pull\//g, '').replace(/\/merge$/g, '');
|
} else if (sver) {
|
||||||
return `pr-${pr}`;
|
version.version = sver;
|
||||||
|
version.latest = true;
|
||||||
|
} else {
|
||||||
|
version.version = tag;
|
||||||
}
|
}
|
||||||
|
} else if (sver) {
|
||||||
|
version.version = sver;
|
||||||
|
version.latest = true;
|
||||||
|
} else {
|
||||||
|
version.version = tag;
|
||||||
|
}
|
||||||
|
} else if (/^refs\/heads\//.test(this.context.ref)) {
|
||||||
|
version.version = this.context.ref.replace(/^refs\/heads\//g, '').replace(/\//g, '-');
|
||||||
|
if (this.inputs.tagEdge && this.inputs.tagEdgeBranch === version.version) {
|
||||||
|
version.version = 'edge';
|
||||||
|
}
|
||||||
|
} else if (/^refs\/pull\//.test(this.context.ref)) {
|
||||||
|
version.version = `pr-${this.context.ref.replace(/^refs\/pull\//g, '').replace(/\/merge$/g, '')}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return version;
|
||||||
}
|
}
|
||||||
|
|
||||||
public tags(): Array<string> {
|
public tags(): Array<string> {
|
||||||
|
const version: Version = this.version();
|
||||||
|
if (!version.version) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
let tags: Array<string> = [];
|
let tags: Array<string> = [];
|
||||||
for (const image of this.inputs.images) {
|
for (const image of this.inputs.images) {
|
||||||
if (/schedule/.test(this.context.eventName)) {
|
tags.push(`${image}:${version.version}`);
|
||||||
tags.push.apply(tags, Meta.eventSchedule(image));
|
if (version.latest) {
|
||||||
} else if (/^refs\/tags\//.test(this.context.ref)) {
|
tags.push(`${image}:latest`);
|
||||||
tags.push.apply(tags, this.eventTag(image));
|
|
||||||
} else if (/^refs\/heads\//.test(this.context.ref)) {
|
|
||||||
tags.push.apply(tags, this.eventBranch(image));
|
|
||||||
} else if (/^refs\/pull\//.test(this.context.ref)) {
|
|
||||||
tags.push.apply(tags, this.eventPullRequest(image));
|
|
||||||
} else {
|
|
||||||
core.warning(`Unknown event "${this.context.eventName}" with ref "${this.context.ref}"`);
|
|
||||||
}
|
}
|
||||||
if (this.context.sha && this.inputs.tagSha) {
|
if (this.context.sha && this.inputs.tagSha) {
|
||||||
tags.push(`${image}:sha-${this.context.sha.substr(0, 7)}`);
|
tags.push(`${image}:sha-${this.context.sha.substr(0, 7)}`);
|
||||||
@@ -61,36 +96,10 @@ export class Meta {
|
|||||||
`org.opencontainers.image.description=${this.repo.description || ''}`,
|
`org.opencontainers.image.description=${this.repo.description || ''}`,
|
||||||
`org.opencontainers.image.url=${this.repo.html_url || ''}`,
|
`org.opencontainers.image.url=${this.repo.html_url || ''}`,
|
||||||
`org.opencontainers.image.source=${this.repo.clone_url || ''}`,
|
`org.opencontainers.image.source=${this.repo.clone_url || ''}`,
|
||||||
`org.opencontainers.image.version=${this.version() || ''}`,
|
`org.opencontainers.image.version=${this.version().version || ''}`,
|
||||||
`org.opencontainers.image.created=${new Date().toISOString()}`,
|
`org.opencontainers.image.created=${this.date.toISOString()}`,
|
||||||
`org.opencontainers.image.revision=${this.context.sha || ''}`,
|
`org.opencontainers.image.revision=${this.context.sha || ''}`,
|
||||||
`org.opencontainers.image.licenses=${this.repo.license?.spdx_id || ''}`
|
`org.opencontainers.image.licenses=${this.repo.license?.spdx_id || ''}`
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
private static eventSchedule(image: string): Array<string> {
|
|
||||||
return [`${image}:nightly`];
|
|
||||||
}
|
|
||||||
|
|
||||||
private eventTag(image: string): Array<string> {
|
|
||||||
const tag = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
|
||||||
const version = semver.clean(tag);
|
|
||||||
if (version) {
|
|
||||||
return [`${image}:${version}`, `${image}:latest`];
|
|
||||||
}
|
|
||||||
return [`${image}:${tag}`];
|
|
||||||
}
|
|
||||||
|
|
||||||
private eventBranch(image: string): Array<string> {
|
|
||||||
const branch = this.context.ref.replace(/^refs\/heads\//g, '').replace(/\//g, '-');
|
|
||||||
if (this.inputs.tagEdge === branch) {
|
|
||||||
return [`${image}:edge`];
|
|
||||||
}
|
|
||||||
return [`${image}:${branch}`];
|
|
||||||
}
|
|
||||||
|
|
||||||
private eventPullRequest(image: string): Array<string> {
|
|
||||||
const pr = this.context.ref.replace(/^refs\/pull\//g, '').replace(/\/merge$/g, '');
|
|
||||||
return [`${image}:pr-${pr}`];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
32
yarn.lock
32
yarn.lock
@@ -1622,6 +1622,18 @@ growly@^1.3.0:
|
|||||||
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
|
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
|
||||||
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
|
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
|
||||||
|
|
||||||
|
handlebars@^4.7.6:
|
||||||
|
version "4.7.6"
|
||||||
|
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
|
||||||
|
integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==
|
||||||
|
dependencies:
|
||||||
|
minimist "^1.2.5"
|
||||||
|
neo-async "^2.6.0"
|
||||||
|
source-map "^0.6.1"
|
||||||
|
wordwrap "^1.0.0"
|
||||||
|
optionalDependencies:
|
||||||
|
uglify-js "^3.1.4"
|
||||||
|
|
||||||
har-schema@^2.0.0:
|
har-schema@^2.0.0:
|
||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
|
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
|
||||||
@@ -2638,6 +2650,11 @@ mkdirp@1.x:
|
|||||||
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
|
||||||
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
|
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
|
||||||
|
|
||||||
|
moment@^2.29.1:
|
||||||
|
version "2.29.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
|
||||||
|
integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==
|
||||||
|
|
||||||
ms@2.0.0:
|
ms@2.0.0:
|
||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
||||||
@@ -2670,6 +2687,11 @@ natural-compare@^1.4.0:
|
|||||||
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
||||||
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
|
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
|
||||||
|
|
||||||
|
neo-async@^2.6.0:
|
||||||
|
version "2.6.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
|
||||||
|
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
|
||||||
|
|
||||||
nice-try@^1.0.4:
|
nice-try@^1.0.4:
|
||||||
version "1.0.5"
|
version "1.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
|
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
|
||||||
@@ -3580,6 +3602,11 @@ typescript@^4.0.3:
|
|||||||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.3.tgz#153bbd468ef07725c1df9c77e8b453f8d36abba5"
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.3.tgz#153bbd468ef07725c1df9c77e8b453f8d36abba5"
|
||||||
integrity sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg==
|
integrity sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg==
|
||||||
|
|
||||||
|
uglify-js@^3.1.4:
|
||||||
|
version "3.11.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.11.3.tgz#b2f8c87826344f091ba48c417c499d6cba5d5786"
|
||||||
|
integrity sha512-wDRziHG94mNj2n3R864CvYw/+pc9y/RNImiTyrrf8BzgWn75JgFSwYvXrtZQMnMnOp/4UTrf3iCSQxSStPiByA==
|
||||||
|
|
||||||
union-value@^1.0.0:
|
union-value@^1.0.0:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
|
resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
|
||||||
@@ -3732,6 +3759,11 @@ word-wrap@~1.2.3:
|
|||||||
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
||||||
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
||||||
|
|
||||||
|
wordwrap@^1.0.0:
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
|
||||||
|
integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
|
||||||
|
|
||||||
wrap-ansi@^6.2.0:
|
wrap-ansi@^6.2.0:
|
||||||
version "6.2.0"
|
version "6.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
|
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
|
||||||
|
Reference in New Issue
Block a user