Merge pull request #58 from crazy-max/docker-install
Some checks failed
publish / publish (push) Has been cancelled

docker: install, download and tearDown methods
This commit is contained in:
CrazyMax
2023-03-02 15:58:16 +01:00
committed by GitHub
18 changed files with 967 additions and 8 deletions

View File

@@ -19,7 +19,7 @@ import path from 'path';
import * as core from '@actions/core';
import * as semver from 'semver';
import {Docker} from '../docker';
import {Docker} from '../docker/docker';
import {Exec} from '../exec';
import {Inputs} from './inputs';

View File

@@ -26,7 +26,7 @@ import * as util from 'util';
import {Buildx} from './buildx';
import {Context} from '../context';
import {Exec} from '../exec';
import {Docker} from '../docker';
import {Docker} from '../docker/docker';
import {Git} from '../git';
import {GitHubRelease} from '../types/github';