Skip to content

Commit

Permalink
chore: build new dist version
Browse files Browse the repository at this point in the history
  • Loading branch information
atymic committed Jan 19, 2021
1 parent 3cb1627 commit cb10890
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/lib
/tmp
node_modules
.eslintcache
1 change: 0 additions & 1 deletion dist/SetupDeployer.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
interface DeployerOptions {
deployerVersion?: string;
deployerRecipesVersion?: string;
skipDeployerInstall?: string;
}
declare const _default: (options: DeployerOptions) => Promise<void>;
Expand Down
6 changes: 1 addition & 5 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3964,7 +3964,6 @@ const tasks = new taskz([
text: 'Install Deployer',
task: () => SetupDeployer_1.default({
deployerVersion: core.getInput('deployer-version'),
deployerRecipesVersion: core.getInput('deployer-recipes-version'),
skipDeployerInstall: core.getInput('deployer-skip-install'),
})
},
Expand Down Expand Up @@ -7966,10 +7965,7 @@ exports.default = async (options) => {
const deployerPackage = options.deployerVersion
? `deployer/deployer:${options.deployerVersion}`
: 'deployer/deployer';
const deployerRecipesPackage = options.deployerRecipesVersion
? `deployer/recipes:${options.deployerRecipesVersion}`
: 'deployer/recipes';
await execa('composer', ['global', 'require', deployerPackage, deployerRecipesPackage]);
await execa('composer', ['global', 'require', deployerPackage]);
const installPath = (await execa('composer', ['global', 'config', 'home'])).stdout;
core.addPath(`${installPath}/vendor/bin`);
};
Expand Down

0 comments on commit cb10890

Please sign in to comment.